Skip to content

Commit ecd4d85

Browse files
committed
Release v3.2.1
Added - Added testing of jruby-9.4 [#172] - Added testing of Ruby 3.4 [#173] Removed - Drop testing of Ruby <2.7, jruby-9.3 [#172] Fixed - Fix issue where negative boolean flags were output incorrectly [#179] - Fix issues with frozen strings which fail jruby-head (JRuby 10) [#180]
1 parent 0e9e463 commit ecd4d85

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

Diff for: CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

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+
719
## [3.2.0] - 2024-11-11
820
### Added
921
- 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/).
222234

223235
- Initial release.
224236

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
226239
[3.2.0]: https://github.com/ManageIQ/optimist/compare/v3.1.0...v3.2.0
227240
[3.1.0]: https://github.com/ManageIQ/optimist/compare/v3.0.1...v3.1.0
228241
[3.0.1]: https://github.com/ManageIQ/optimist/compare/v3.0.0...v3.0.1

Diff for: lib/optimist.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
require 'date'
99

1010
module Optimist
11-
VERSION = "3.2.0"
11+
VERSION = "3.2.1"
1212

1313
## Thrown by Parser in the event of a commandline error. Not needed if
1414
## you're using the Optimist::options entry.

0 commit comments

Comments
 (0)