Skip to content

Commit

Permalink
v0.2.1 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshawl committed Feb 19, 2024
1 parent f7ac677 commit feb2e51
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1] - 2024-02-19

### Added
- gemspec metadata

### Fixed
- `Minisign::PublicKey#verify` documentation

## [0.2.0] - 2024-02-17

### Added
Expand Down Expand Up @@ -56,7 +64,8 @@ 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.2.0...HEAD
[Unreleased]: https://github.com/jshawl/minisign/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/jshawl/minisign/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/jshawl/minisign/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/jshawl/minisign/compare/v0.0.8...v0.1.0
[0.0.8]: https://github.com/jshawl/minisign/compare/v0.0.7...v0.0.8
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:
minisign (0.2.0)
minisign (0.2.1)
ed25519 (~> 1.3)
rbnacl (~> 7.1)

Expand Down
11 changes: 9 additions & 2 deletions minisign.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,22 @@

Gem::Specification.new do |s|
s.name = 'minisign'
s.version = '0.2.0'
s.version = '0.2.1'
s.summary = 'Minisign, in Ruby!'
s.description = 'Verify minisign signatures'
s.description = 'Create and verify minisign signatures'
s.authors = ['Jesse Shawl']
s.email = '[email protected]'
s.files = Dir['lib/**/*']
s.executables << 'minisign'
s.homepage =
'https://github.com/jshawl/minisign'
s.metadata = {
'bug_tracker_uri' => "#{s.homepage}/issues",
'changelog_uri' => "#{s.homepage}/blob/main/CHANGELOG.md",
'documentation_uri' => "https://www.rubydoc.info/gems/#{s.name}/#{s.version}",
'source_code_uri' => "#{s.homepage}/tree/v#{s.version}",
'rubygems_mfa_required' => 'true'
}
s.license = 'MIT'
s.add_runtime_dependency 'ed25519', '~> 1.3'
s.add_runtime_dependency 'rbnacl', '~> 7.1'
Expand Down

0 comments on commit feb2e51

Please sign in to comment.