Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mudge committed Dec 29, 2024
1 parent 4cf1745 commit c473b27
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.8.0] - 2024-12-29

### Added

- Add Ruby 3.4 support to the precompiled, native gems
- Restored support for Ruby 2.6, 2.7, and 3.0 after dropping them in 0.8.0.rc1

### Changed

- Provide separate precompiled, native gems for GNU and Musl
- Require glibc 2.29+ for x86-linux-gnu and x86_64-linux-gnu (and recommend
RubyGems 3.3.22+ and Bundler 2.3.21+)

## [0.8.0.rc1] - 2024-12-16

### Added
Expand Down Expand Up @@ -128,6 +141,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.8.0]: https://github.com/mudge/argon2id/releases/tag/v0.8.0
[0.8.0.rc1]: https://github.com/mudge/argon2id/releases/tag/v0.8.0.rc1
[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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0.rc1
**Current version:** 0.8.0
**Bundled Argon2 version:** libargon2.1 (20190702)

```ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/argon2id/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Argon2id
VERSION = "0.8.0.rc1"
VERSION = "0.8.0"
end

0 comments on commit c473b27

Please sign in to comment.