diff --git a/.github/workflows/gem-push.yml b/.github/workflows/gem-push.yml index 4da7b53..7cd5e6c 100644 --- a/.github/workflows/gem-push.yml +++ b/.github/workflows/gem-push.yml @@ -15,9 +15,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Ruby 2.7 - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: '2.7' - name: Publish to GPR run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 590377d..b0524d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8] - 2024-02-03 + +### Added - Create signatures - Parse private key - Use ruby 2.7 @@ -31,6 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG. -[Unreleased]: https://github.com/jshawl/minisign/compare/v0.0.5...HEAD +[Unreleased]: https://github.com/jshawl/minisign/compare/v0.0.8...HEAD +[0.0.8]: https://github.com/jshawl/minisign/compare/v0.0.7...v0.0.8 +[0.0.7]: https://github.com/jshawl/minisign/compare/v0.0.6...v0.0.7 +[0.0.6]: https://github.com/jshawl/minisign/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/jshawl/minisign/compare/v0.0.4...v0.0.5 [0.0.4]: https://github.com/jshawl/minisign/releases/tag/v0.0.4 diff --git a/Gemfile.lock b/Gemfile.lock index 4dcbb8c..d50c08d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - minisign (0.0.7) + minisign (0.0.8) ed25519 (~> 1.3) rbnacl (~> 7.1) diff --git a/minisign.gemspec b/minisign.gemspec index febc225..c906e77 100644 --- a/minisign.gemspec +++ b/minisign.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'minisign' - s.version = '0.0.7' + s.version = '0.0.8' s.summary = 'Minisign, in Ruby!' s.description = 'Verify minisign signatures' s.authors = ['Jesse Shawl']