Skip to content

Commit 2fd8e3c

Browse files
committed
Release v2.1.0
Fixed * Remove remnants of bundler 1.x support (#20) * Fix detection of bundler version (#21) * Fix spec issues after release of bundler 2.4.17 (#32) Added * Switch to GitHub Actions (#25) * Add bundler 2.4 to the test matrix (#28) * Add Ruby 3.1 and 3.2 to test matrix (#29) * Allow user to specify a PATH to search for gem overrides (#34)
1 parent c1b0037 commit 2fd8e3c

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,25 @@ a nice looking [Changelog](http://keepachangelog.com).
77

88
## Version [HEAD] <sub><sup>now</sub></sup>
99

10+
## Version [2.1.0] <sub><sup>2024-01-09</sub></sup>
11+
12+
### Fixed
13+
* Remove remnants of bundler 1.x support ([#20](https://github.com/ManageIQ/bundler-inject/pull/20))
14+
* Fix detection of bundler version ([#21](https://github.com/ManageIQ/bundler-inject/pull/21))
15+
* Fix spec issues after release of bundler 2.4.17 ([#32](https://github.com/ManageIQ/bundler-inject/pull/32))
16+
17+
### Added
18+
* Switch to GitHub Actions ([#25](https://github.com/ManageIQ/bundler-inject/pull/25))
19+
* Add bundler 2.4 to the test matrix ([#28](https://github.com/ManageIQ/bundler-inject/pull/28))
20+
* Add Ruby 3.1 and 3.2 to test matrix ([#29](https://github.com/ManageIQ/bundler-inject/pull/29))
21+
* Allow user to specify a PATH to search for gem overrides ([#34](https://github.com/ManageIQ/bundler-inject/pull/34))
22+
1023
## Version [2.0.0] <sub><sup>2021-05-01</sub></sup>
1124

1225
* **BREAKING**: Drops support for bundler below 2.0
1326
* **BREAKING**: Drops support for Ruby below 2.6
1427
* Adds support for running as a service (with no user / HOME set)
1528

16-
[HEAD]: https://github.com/ManageIQ/bundler-inject/compare/v2.0.0...HEAD
29+
[HEAD]: https://github.com/ManageIQ/bundler-inject/compare/v2.1.0...HEAD
30+
[2.1.0]: https://github.com/ManageIQ/bundler-inject/compare/v2.0.0...v2.1.0
1731
[2.0.0]: https://github.com/ManageIQ/bundler-inject/compare/v1.1.0...v2.0.0

lib/bundler/inject/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Bundler
22
module Inject
3-
VERSION = "2.0.0".freeze
3+
VERSION = "2.1.0".freeze
44
end
55
end

0 commit comments

Comments
 (0)