Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
l7ssha committed Sep 25, 2023
1 parent 3e29f69 commit bee200e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.3.1

- Fix docs command

## 3.3.0

- Implement new `/admin perform-nickname-pooping` and `/system clear-cache` command
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.9'
services:
running_on_dart:
image: ghcr.io/nyxx-discord/running_on_dart:3.3.0
image: ghcr.io/nyxx-discord/running_on_dart:3.3.1
container_name: running_on_dart
env_file:
- .env
Expand Down
2 changes: 1 addition & 1 deletion lib/src/commands/info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ChatCommand info = ChatCommand(
})
..addFooter((footer) {
footer.text = 'nyxx ${Constants.version}'
' | ROD v$version'
' | ROD $version'
' | Shard ${(context.guild?.shard.id ?? 0) + 1} of ${(context.client as INyxxWebsocket).shards}'
' | Dart SDK ${Platform.version.split('(').first}';
})
Expand Down
2 changes: 1 addition & 1 deletion lib/src/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'dart:io';

import 'package:nyxx/nyxx.dart';

String get version => '3.3.0';
String get version => '3.3.1';

/// Get a [String] from an environment variable, throwing an exception if it is not set.
///
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: 3.3.0
version: 3.3.1
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 bee200e

Please sign in to comment.