Skip to content

Commit

Permalink
Merge pull request #287 from nyxx-discord/dev
Browse files Browse the repository at this point in the history
Release 3.2.3
  • Loading branch information
l7ssha authored Jan 10, 2022
2 parents 131bc1c + e0258c3 commit 4f741e6
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 @@
## 3.2.3
__10.01.2022__

- Fixup invalid formatting of emoji in BaseGuildEmoji.formatForMessage (#286)

## 3.2.2
__08.01.2022__

Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/message/guild_emoji.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ abstract class BaseGuildEmoji extends SnowflakeEntity implements IBaseGuildEmoji
BaseGuildEmoji(RawApiMap raw) : super(Snowflake(raw["id"]));

@override
String formatForMessage() => "<:$id>";
String formatForMessage() => "<:nyxx:$id>";

@override
String encodeForAPI() => id.toString();
Expand Down
2 changes: 1 addition & 1 deletion lib/src/internal/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Constants {
static const int apiVersion = 9;

/// Version of Nyxx
static const String version = "3.2.2";
static const String version = "3.2.3";

/// Url to Nyxx repo
static const String repoUrl = "https://github.com/nyxx-discord/nyxx";
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: nyxx
version: 3.2.2
version: 3.2.3
description: A Discord library for Dart. Simple, robust framework for creating discord bots for Dart language.
homepage: https://github.com/nyxx-discord/nyxx
repository: https://github.com/nyxx-discord/nyxx
Expand Down

0 comments on commit 4f741e6

Please sign in to comment.