Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mudge committed Nov 1, 2024
1 parent 3b89c63 commit a325566
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.2] - 2024-11-01

### Added

- The original salt for an `Argon2id::Password` can now be retrieved with
`Argon2id::Password#salt`

### Changed

- Encoded hashes are now validated when initialising an `Argon2id::Password`,
raising an `ArgumentError` if they are invalid

## [0.1.2] - 2024-11-01

### Fixed

- Validate that the encoded hash passed to Argon2id::Password.new is a
null-terminated C string, raising an ArgumentError if it contains extra null
- Validate that the encoded hash passed to `Argon2id::Password.new` is a
null-terminated C string, raising an `ArgumentError` if it contains extra null
bytes

## [0.1.1] - 2024-11-01
Expand All @@ -32,6 +44,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.2.0]: https://github.com/mudge/argon2id/releases/tag/v0.2.0
[0.1.2]: https://github.com/mudge/argon2id/releases/tag/v0.1.2
[0.1.1]: https://github.com/mudge/argon2id/releases/tag/v0.1.1
[0.1.0]: https://github.com/mudge/argon2id/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function that won the 2015 [Password Hashing Competition][].

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

**Current version:** 0.1.2
**Current version:** 0.2.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.1.2"
VERSION = "0.2.0"
end

0 comments on commit a325566

Please sign in to comment.