From 0889b0cbed601f7fb9850258b68618071e9f0612 Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Fri, 1 Nov 2024 15:03:55 +0000 Subject: [PATCH] Bump version to 0.2.1 --- CHANGELOG.md | 10 +++++++++- README.md | 2 +- lib/argon2id/version.rb | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06ce8f0..3743eed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.1.2] - 2024-11-01 +## [0.2.1] - 2024-11-01 + +### Added + +- Anything that can be coerced to a String can now be passed to + `Argon2id::Password.new` + +## [0.2.0] - 2024-11-01 ### Added @@ -44,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 reference C implementation of Argon2, the password-hashing function that won the Password Hashing Competition. +[0.2.1]: https://github.com/mudge/argon2id/releases/tag/v0.2.1 [0.2.0]: https://github.com/mudge/argon2id/releases/tag/v0.2.0 [0.1.2]: https://github.com/mudge/argon2id/releases/tag/v0.1.2 [0.1.1]: https://github.com/mudge/argon2id/releases/tag/v0.1.1 diff --git a/README.md b/README.md index 8f6bb4f..5d0c626 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ function that won the 2015 [Password Hashing Competition][]. [![Build Status](https://github.com/mudge/argon2id/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/argon2id/actions) -**Current version:** 0.2.0 +**Current version:** 0.2.1 **Bundled Argon2 version:** libargon2.1 (20190702) ```ruby diff --git a/lib/argon2id/version.rb b/lib/argon2id/version.rb index 26d272b..85e1f38 100644 --- a/lib/argon2id/version.rb +++ b/lib/argon2id/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Argon2id - VERSION = "0.2.0" + VERSION = "0.2.1" end