diff --git a/CHANGELOG.md b/CHANGELOG.md index 125404496..1ad1be3f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.5.0] - 2023-07-05 +[3.5.0]: https://github.com/shardlab/discordrb/releases/tag/v3.5.0 + +[View diff for this release.](https://github.com/shardlab/discordrb/compare/v3.4.2..v3.5.0) + +### Summary + +Lots of changes, Discord is changing their API and we're trying to keep up. This release is a bit of a mess, but it's a necessary one. + ## [3.4.2] - 2020-02-05 [3.4.2]: https://github.com/shardlab/discordrb/releases/tag/v3.4.2 diff --git a/discordrb.gemspec b/discordrb.gemspec index 654f1e458..8867fd132 100644 --- a/discordrb.gemspec +++ b/discordrb.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'rest-client', '>= 2.0.0' spec.add_dependency 'websocket-client-simple', '>= 0.3.0' - spec.add_dependency 'discordrb-webhooks', '~> 3.4.2' + spec.add_dependency 'discordrb-webhooks', '~> 3.5.0' spec.required_ruby_version = '>= 2.7' diff --git a/lib/discordrb/version.rb b/lib/discordrb/version.rb index e4a23773f..6f25f6dc2 100644 --- a/lib/discordrb/version.rb +++ b/lib/discordrb/version.rb @@ -3,5 +3,5 @@ # Discordrb and all its functionality, in this case only the version. module Discordrb # The current version of discordrb. - VERSION = '3.4.2' + VERSION = '3.5.0' end diff --git a/lib/discordrb/webhooks/version.rb b/lib/discordrb/webhooks/version.rb index 0c16270d6..d89c30aa6 100644 --- a/lib/discordrb/webhooks/version.rb +++ b/lib/discordrb/webhooks/version.rb @@ -4,6 +4,6 @@ module Discordrb module Webhooks # The current version of discordrb-webhooks. - VERSION = '3.4.2' + VERSION = '3.5.0' end end