Skip to content

Commit 8677e75

Browse files
committed
Bump version to 0.9.1
1 parent 4903ba2 commit 8677e75

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.9.1] - 2026-04-04
9+
10+
### Fixed
11+
- Guard against salts that are over UINT32_MAX in size.
12+
- Ensure all arguments are coerced before passing to the underlying C library
13+
(avoiding issues where coercion might cause GC and compaction).
14+
815
## [0.9.0] - 2025-12-30
916

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

161+
[0.9.1]: https://github.com/mudge/argon2id/releases/tag/v0.9.1
154162
[0.9.0]: https://github.com/mudge/argon2id/releases/tag/v0.9.0
155163
[0.8.0]: https://github.com/mudge/argon2id/releases/tag/v0.8.0
156164
[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.9.1
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.9.1"
55
end

0 commit comments

Comments
 (0)