diff --git a/CHANGELOG.md b/CHANGELOG.md index 0afed7d4b..667aae1a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2026-03-27 + +### Added + +- The cibuildgem action has a new parameter "version". You can add this in the workflow to configure which version + of the cibuildgem gem to use (defaults to latest published version on rubygems.org) + +### Fixed + +- You can now retry the publish step in case it failed. This was previously not possible because the retried job would + fail if the previous one had already pushed **some** gems. + ## [0.2.1] - 2026-01-09 ### Fixed diff --git a/Gemfile.lock b/Gemfile.lock index 2cca0c2d9..1d33d374c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cibuildgem (0.2.2) + cibuildgem (0.3.0) prism rake-compiler thor diff --git a/lib/cibuildgem/version.rb b/lib/cibuildgem/version.rb index c42ecc8f6..d1e2fe793 100644 --- a/lib/cibuildgem/version.rb +++ b/lib/cibuildgem/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Cibuildgem - VERSION = "0.2.2" + VERSION = "0.3.0" end