diff --git a/CHANGELOG.md b/CHANGELOG.md index 331d79e..1e40c57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,25 @@ a nice looking [Changelog](http://keepachangelog.com). ## Version [HEAD] now +## Version [2.1.0] 2024-01-09 + +### Fixed +* Remove remnants of bundler 1.x support ([#20](https://github.com/ManageIQ/bundler-inject/pull/20)) +* Fix detection of bundler version ([#21](https://github.com/ManageIQ/bundler-inject/pull/21)) +* Fix spec issues after release of bundler 2.4.17 ([#32](https://github.com/ManageIQ/bundler-inject/pull/32)) + +### Added +* Switch to GitHub Actions ([#25](https://github.com/ManageIQ/bundler-inject/pull/25)) +* Add bundler 2.4 to the test matrix ([#28](https://github.com/ManageIQ/bundler-inject/pull/28)) +* Add Ruby 3.1 and 3.2 to test matrix ([#29](https://github.com/ManageIQ/bundler-inject/pull/29)) +* Allow user to specify a PATH to search for gem overrides ([#34](https://github.com/ManageIQ/bundler-inject/pull/34)) + ## Version [2.0.0] 2021-05-01 * **BREAKING**: Drops support for bundler below 2.0 * **BREAKING**: Drops support for Ruby below 2.6 * Adds support for running as a service (with no user / HOME set) -[HEAD]: https://github.com/ManageIQ/bundler-inject/compare/v2.0.0...HEAD +[HEAD]: https://github.com/ManageIQ/bundler-inject/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/ManageIQ/bundler-inject/compare/v2.0.0...v2.1.0 [2.0.0]: https://github.com/ManageIQ/bundler-inject/compare/v1.1.0...v2.0.0 diff --git a/lib/bundler/inject/version.rb b/lib/bundler/inject/version.rb index 1f4fa1a..a8201da 100644 --- a/lib/bundler/inject/version.rb +++ b/lib/bundler/inject/version.rb @@ -1,5 +1,5 @@ module Bundler module Inject - VERSION = "2.0.0".freeze + VERSION = "2.1.0".freeze end end