Skip to content

Commit 9861753

Browse files
committed
Bump version to 0.10.0
1 parent 2718bb0 commit 9861753

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.10.0] - 2026-04-06
9+
10+
### Changed
11+
12+
- Hashing and verifying passwords no longer holds the Ruby Global VM Lock
13+
during the intentionally expensive computation of the Argon2id hash, allowing
14+
other threads to do work at the same time.
15+
- Argon2id::Password objects, their encoded password hash, salt, and hash
16+
output strings are now all frozen to prevent mutation. Inputs are also now
17+
frozen ASAP during hashing and verification to prevent mutation before
18+
passing to the internal C/Java implementation of Argon2.
19+
- The extension is now flagged as safe to use with Ractors.
20+
821
## [0.9.0] - 2025-12-30
922

1023
### Added
@@ -151,6 +164,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
151164
reference C implementation of Argon2, the password-hashing function that won
152165
the Password Hashing Competition.
153166

167+
[0.10.0]: https://github.com/mudge/argon2id/releases/tag/v0.10.0
154168
[0.9.0]: https://github.com/mudge/argon2id/releases/tag/v0.9.0
155169
[0.8.0]: https://github.com/mudge/argon2id/releases/tag/v0.8.0
156170
[0.8.0.rc1]: https://github.com/mudge/argon2id/releases/tag/v0.8.0.rc1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Ruby bindings to [Argon2][], the password-hashing function that won the 2015
55

66
[![Build Status](https://github.com/mudge/argon2id/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/argon2id/actions)
77

8-
**Current version:** 0.9.0
8+
**Current version:** 0.10.0
99
**Bundled Argon2 version:** libargon2.1 (20190702)
1010

1111
```ruby

lib/argon2id/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Argon2id
4-
VERSION = "0.9.0"
4+
VERSION = "0.10.0"
55
end

0 commit comments

Comments
 (0)