From 8858994884bcc590341e9f64a410bd94fdd07cd5 Mon Sep 17 00:00:00 2001 From: Jesse Shawl Date: Fri, 9 Feb 2024 18:35:45 -0600 Subject: [PATCH] v0.1.0 --- CHANGELOG.md | 8 +++++++- Gemfile.lock | 2 +- minisign.gemspec | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe0fb6b..e7b33e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2024-02-09 + +### Added - Support signing with unencrypted keys +- Generate a new keypair +- Add `#to_s` support to write keys and signatures to file ## [0.0.8] - 2024-02-03 @@ -36,7 +41,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.0.8...HEAD +[Unreleased]: https://github.com/jshawl/minisign/compare/v0.1.0...HEAD +[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 [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 diff --git a/Gemfile.lock b/Gemfile.lock index eb8bce6..e205a99 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - minisign (0.0.8) + minisign (0.1.0) ed25519 (~> 1.3) rbnacl (~> 7.1) diff --git a/minisign.gemspec b/minisign.gemspec index c906e77..e403f29 100644 --- a/minisign.gemspec +++ b/minisign.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'minisign' - s.version = '0.0.8' + s.version = '0.1.0' s.summary = 'Minisign, in Ruby!' s.description = 'Verify minisign signatures' s.authors = ['Jesse Shawl']