From 1e2111862c933107100cf81f63a38c75219a6051 Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Fri, 8 Nov 2024 13:41:59 +0000 Subject: [PATCH] Bump version to 0.7.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- lib/argon2id/version.rb | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3916bd..63b936a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.7.0] - 2024-11-08 + +### Fixed + +- Fixed verifying Argon2id encoded hashes without a version number on JRuby + +### Added + +- Added a new `Argon2id::Password.valid_hash?` API for testing if a given + encoded hash is a valid Argon2id hash or not (e.g. if you want to check + which hashing function was used to store a user's password) + ## [0.6.0] - 2024-11-05 ### Changed @@ -99,6 +111,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.7.0]: https://github.com/mudge/argon2id/releases/tag/v0.7.0 [0.6.0]: https://github.com/mudge/argon2id/releases/tag/v0.6.0 [0.5.0]: https://github.com/mudge/argon2id/releases/tag/v0.5.0 [0.4.1]: https://github.com/mudge/argon2id/releases/tag/v0.4.1 diff --git a/README.md b/README.md index 4305b84..f62c39c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Ruby bindings to [Argon2][], the password-hashing function that won the 2015 [![Build Status](https://github.com/mudge/argon2id/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/argon2id/actions) -**Current version:** 0.6.0 +**Current version:** 0.7.0 **Bundled Argon2 version:** libargon2.1 (20190702) ```ruby diff --git a/lib/argon2id/version.rb b/lib/argon2id/version.rb index 1290b22..11b1a82 100644 --- a/lib/argon2id/version.rb +++ b/lib/argon2id/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Argon2id - VERSION = "0.6.0" + VERSION = "0.7.0" end