Skip to content

Commit

Permalink
Release 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
l7ssha committed Jan 13, 2022
1 parent 2e73111 commit 76a65bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.7.0

- Update docker image to full version
- Update local cache each 15 minutes

## 2.6.3

- Fixup info command
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM google/dart:2.15.0-82.2.beta as builder
FROM google/dart:2.15.0 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion lib/src/modules/docs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void setupDocsUpdateJob() {
logger.info("Starting docs cache updater job");

updateDocsCache();
Timer.periodic(const Duration(minutes: 1), (timer) => updateDocsCache());
Timer.periodic(const Duration(minutes: 15), (timer) => updateDocsCache());
}

Future<void> updateDocsCache() async {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: running_on_dart
version: 2.6.3
version: 2.7.0
description: Discord Bot for nyxx development
homepage: https://github.com/nyxx-discord/running_on_dart
repository: https://github.com/nyxx-discord/running_on_dart
Expand Down

0 comments on commit 76a65bd

Please sign in to comment.