Skip to content

Commit

Permalink
Add getter methods to Hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanner Davies committed Sep 29, 2023
1 parent d8441f7 commit 9562dc9
Show file tree
Hide file tree
Showing 6 changed files with 226 additions and 64 deletions.
193 changes: 155 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argon2-kdf"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
readme = "Readme.md"
license = "MIT"
Expand All @@ -14,5 +14,5 @@ base64 = "0.21.*"
rand = "0.8.*"

[build-dependencies]
bindgen = "0.66.*"
bindgen = "0.68.*"
cc = { version = "1.0.*", features = ["parallel"] }
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use argon2-kdf, add the following to your Cargo.toml:

```toml
[dependencies]
argon2-kdf = "1.3.0"
argon2-kdf = "1.4.0"
```

# Examples
Expand Down
9 changes: 5 additions & 4 deletions deployment-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
2. Run `cargo test --release`
3. Update version in `Cargo.toml`
4. Update version in `Readme.md`
5. Update examples in `Readme.md` and `lib.rs`
6. Tag a commit with the release
7. Mark a release on GitHub
8. Run `cargo publish`
5. Update version in `lib.rs` documentation comment
6. Update examples in `Readme.md` and `lib.rs`
7. Tag a commit with the release
8. Mark a release on GitHub
9. Run `cargo publish`
Loading

0 comments on commit 9562dc9

Please sign in to comment.