From 5dac578d3cf93ba9253ed9c8e5bfec2dee99d512 Mon Sep 17 00:00:00 2001 From: Abitofevrything <54505189+abitofevrything@users.noreply.github.com> Date: Wed, 1 Nov 2023 21:53:29 +0100 Subject: [PATCH] Release 6.0.1 (#581) --- CHANGELOG.md | 14 ++++++++++++++ lib/src/api_options.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60a65d5e9..da26c8d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 6.0.1 +__01.10.2023__ + +- bug: Fix incorrect serialization of CommandOptionBuilder. +- bug: Fix customId missing from ButtonBuilder constructor. +- bug: Fix voice states not being cached correctly. +- bug: Fix incorrect parsing of scheduled events. +- bug: Fix `ephemeral` parameter not working when responding to message component interactions. +- bug: Fix parsing button labels when they are not set. +- bug: Fix incorrect serialization of TextInputBuilder. +- bug: Fix some entities not being cached. +- bug: Fix entities getting "stuck" in cache due to momentary high use. +- feat: Add more places entities can be cached from. + ## 6.0.0 __16.10.2023__ diff --git a/lib/src/api_options.dart b/lib/src/api_options.dart index 8938a6075..679a7287e 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.0.0'; + static const nyxxVersion = '6.0.1'; /// 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 4b1b54cc7..345846332 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: nyxx -version: 6.0.0 +version: 6.0.1 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