Skip to content

Commit 7cd8956

Browse files
committed
Bump version to 0.8.0.rc1
1 parent 62d6fbe commit 7cd8956

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.8.0.rc1] - 2024-12-16
9+
10+
### Added
11+
12+
- Add Ruby 3.4.0-rc1 support to the precompiled, native gems
13+
14+
### Changed
15+
16+
- Provide separate precompiled, native gems for GNU and Musl
17+
- Require glibc 2.29+ for x86-linux-gnu and x86_64-linux-gnu (and recommend
18+
RubyGems 3.3.22+ and Bundler 2.3.21+)
19+
20+
### Removed
21+
22+
- Drop support for Ruby versions older than 3.1 as they do not ship with a
23+
version of RubyGems new enough to handle the new Musl gems
24+
825
## [0.7.0] - 2024-11-08
926

1027
### Fixed
@@ -111,6 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111128
reference C implementation of Argon2, the password-hashing function that won
112129
the Password Hashing Competition.
113130

131+
[0.8.0.rc1]: https://github.com/mudge/argon2id/releases/tag/v0.8.0.rc1
114132
[0.7.0]: https://github.com/mudge/argon2id/releases/tag/v0.7.0
115133
[0.6.0]: https://github.com/mudge/argon2id/releases/tag/v0.6.0
116134
[0.5.0]: https://github.com/mudge/argon2id/releases/tag/v0.5.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.7.0
8+
**Current version:** 0.8.0.rc1
99
**Bundled Argon2 version:** libargon2.1 (20190702)
1010

1111
```ruby

argon2id.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
1818
"source_code_uri" => "https://github.com/mudge/argon2id",
1919
"rubygems_mfa_required" => "true"
2020
}
21-
s.required_ruby_version = ">= 2.6.0"
21+
s.required_ruby_version = ">= 3.1.0"
2222
s.extensions = ["ext/argon2id/extconf.rb"]
2323
s.files = [
2424
"CHANGELOG.md",

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.7.0"
4+
VERSION = "0.8.0.rc1"
55
end

0 commit comments

Comments
 (0)