Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cibuildgem (0.2.2)
cibuildgem (0.3.0)
prism
rake-compiler
thor
Expand Down
2 changes: 1 addition & 1 deletion lib/cibuildgem/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Cibuildgem
VERSION = "0.2.2"
VERSION = "0.3.0"
end
Loading