Skip to content

Commit e23ea63

Browse files
committed
Bump version to 0.9.0
1 parent 56e4b1d commit e23ea63

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.0] - 2025-12-30
9+
10+
### Added
11+
- Add support for Ruby 4.0 in precompiled, native gems.
12+
13+
### Removed
14+
- Remove support and native gems for Ruby 2.6, 2.7, and 3.0.
15+
- Remove native gems for 32-bit platforms, specifically x86-linux-gnu,
16+
x86-linux-musl, and x86-mingw32
17+
818
## [0.8.0] - 2024-12-29
919

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

154+
[0.9.0]: https://github.com/mudge/argon2id/releases/tag/v0.9.0
144155
[0.8.0]: https://github.com/mudge/argon2id/releases/tag/v0.8.0
145156
[0.8.0.rc1]: https://github.com/mudge/argon2id/releases/tag/v0.8.0.rc1
146157
[0.7.0]: https://github.com/mudge/argon2id/releases/tag/v0.7.0

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.8.0
8+
**Current version:** 0.9.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.8.0"
4+
VERSION = "0.9.0"
55
end

0 commit comments

Comments
 (0)