diff --git a/CHANGELOG.md b/CHANGELOG.md index 944a0eac2..0ec642b5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.4.2 +__05.10.2024__ + +- bug: Prevent caches from growing forever. + ## 6.4.1 __04.10.2024__ diff --git a/lib/src/api_options.dart b/lib/src/api_options.dart index ef203b378..1fbd8101e 100644 --- a/lib/src/api_options.dart +++ b/lib/src/api_options.dart @@ -6,7 +6,7 @@ import 'package:oauth2/oauth2.dart'; /// Options for connecting to the Discord API. abstract class ApiOptions { /// The version of nyxx used in [defaultUserAgent]. - static const nyxxVersion = '6.4.1'; + static const nyxxVersion = '6.4.2'; /// The URL to the nyxx repository used in [defaultUserAgent]. static const nyxxRepositoryUrl = 'https://github.com/nyxx-discord/nyxx'; diff --git a/pubspec.yaml b/pubspec.yaml index 96b0f03bb..977aef762 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: nyxx -version: 6.4.1 +version: 6.4.2 description: A complete, robust and efficient wrapper around Discord's API for bots & applications. homepage: https://github.com/nyxx-discord/nyxx repository: https://github.com/nyxx-discord/nyxx