diff --git a/CHANGELOG.md b/CHANGELOG.md index aa1ebf0..63f8f63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 2.0.1 + + + +--- + + +#### 🚀 Enhancements: + +- Remove deprecated File [#37](https://github.com/remove-bg/ruby/pull/37) +- Update Ruby to 3.3.4 [#36](https://github.com/remove-bg/ruby/pull/36) + +#### 🐞 Bugfixes: + +- Fix redefined constant warning [#35](https://github.com/remove-bg/ruby/pull/35) + +#### 🔀 Dependencies + +- Update all Bundler dependencies (2024-07-17) [#34](https://github.com/remove-bg/ruby/pull/34) + + ## 2.0.0 - Deprecate `overwrite: true` in favour of `save!` and `save_zip!` diff --git a/Gemfile.lock b/Gemfile.lock index ba7f635..b3ad776 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - remove_bg (2.0.1.pre) + remove_bg (2.0.2.pre) faraday (>= 2, <= 3) faraday-multipart (~> 1.0) faraday-retry (~> 2.2) diff --git a/lib/remove_bg/version.rb b/lib/remove_bg/version.rb index 1d265cc..441382f 100644 --- a/lib/remove_bg/version.rb +++ b/lib/remove_bg/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RemoveBg - VERSION = "2.0.1.pre" + VERSION = "2.0.2.pre" end