File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 3.2.1] - 2025-03-19
8
+ ### Added
9
+ - Added testing of jruby-9.4 ([ #172 ] ( https://github.com/ManageIQ/optimist/pull/172 ) - thanks @Fryguy )
10
+ - Added testing of Ruby 3.4 ([ #173 ] ( https://github.com/ManageIQ/optimist/pull/173 ) - thanks @Fryguy )
11
+
12
+ ### Removed
13
+ - Drop testing of Ruby <2.7, jruby-9.3 ([ #172 ] ( https://github.com/ManageIQ/optimist/pull/172 ) - thanks @Fryguy )
14
+
15
+ ### Fixed
16
+ - Fix issue where negative boolean flags were output incorrectly ([ #179 ] ( https://github.com/ManageIQ/optimist/pull/179 ) - thanks @Fryguy )
17
+ - Fix issues with frozen strings which fail jruby-head (JRuby 10) ([ #180 ] ( https://github.com/ManageIQ/optimist/pull/180 ) - thanks @Fryguy )
18
+
7
19
## [ 3.2.0] - 2024-11-11
8
20
### Added
9
21
- Align the short and long forms into their own columns in the help output ([ #145 ] ( https://github.com/ManageIQ/optimist/pull/145 ) - thanks @akhoury6 )
@@ -222,7 +234,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
222
234
223
235
- Initial release.
224
236
225
- [ Unreleased ] : https://github.com/ManageIQ/optimist/compare/v3.2.0...HEAD
237
+ [ Unreleased ] : https://github.com/ManageIQ/optimist/compare/v3.2.1...HEAD
238
+ [ 3.2.1 ] : https://github.com/ManageIQ/optimist/compare/v3.2.0...v3.2.1
226
239
[ 3.2.0 ] : https://github.com/ManageIQ/optimist/compare/v3.1.0...v3.2.0
227
240
[ 3.1.0 ] : https://github.com/ManageIQ/optimist/compare/v3.0.1...v3.1.0
228
241
[ 3.0.1 ] : https://github.com/ManageIQ/optimist/compare/v3.0.0...v3.0.1
Original file line number Diff line number Diff line change 8
8
require 'date'
9
9
10
10
module Optimist
11
- VERSION = "3.2.0 "
11
+ VERSION = "3.2.1 "
12
12
13
13
## Thrown by Parser in the event of a commandline error. Not needed if
14
14
## you're using the Optimist::options entry.
You can’t perform that action at this time.
0 commit comments