From 65bab513a0c30fe2d1b0e2694faef0ec8dfa9eb1 Mon Sep 17 00:00:00 2001 From: Abitofevrything <54505189+abitofevrything@users.noreply.github.com> Date: Sun, 7 Jul 2024 22:14:38 +0200 Subject: [PATCH] Release 6.3.0 (#670) --- CHANGELOG.md | 17 +++++++++++++++++ lib/src/api_options.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9f4931ae..978bbae94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 6.3.0 +__07.07.2024__ + +- feat: Add one time purchase SKUs support. +- bug: Include query parameters in CDN requests. +- feat: Add warning logs for rate limits. +- feat: Add `deleteMessages` parameter to `Member.ban`. +- bug: Ensure `client.close()` cleans up all pending operations. +- feat: Add polls support. +- bug: Allow non-ascii characters in audit log reasons. +- feat: Add `memberUpdate` automod type. +- feat: Add `blockMemberInteraction` automod action type. +- feat: Add support for premium buttons. +- bug: Allow parsing unknown enum values. +- bug: Fix parsing of message interaction metadata user. + + ## 6.2.1 __03.04.2024__ diff --git a/lib/src/api_options.dart b/lib/src/api_options.dart index b82162bb8..ac163720b 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.2.1'; + static const nyxxVersion = '6.3.0'; /// 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 b078b735c..090c3966f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: nyxx -version: 6.2.1 +version: 6.3.0 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