Skip to content

Commit

Permalink
chore: Release wow_srp version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gtker committed Feb 12, 2024
1 parent 3c5bdb8 commit 695f0e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.7.0] - 2024-02-12

### Added

* `Ord`, `PartialOrd`, `Eq`, `PartialEq`, and `Hash` for `wrath_header` types.
Expand Down Expand Up @@ -176,7 +178,8 @@ The smaller integer size indicates that the value fits into a u8 without truncat
- Initial release

<!-- next-url -->
[Unreleased]: https://github.com/gtker/wow_srp/compare/v0.6.0...HEAD
[Unreleased]: https://github.com/gtker/wow_srp/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/gtker/wow_srp/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/gtker/wow_srp/compare/v0.5.3...v0.6.0
[0.5.3]: https://github.com/gtker/wow_srp/releases/tag/v0.5.3
[0.5.2]: https://github.com/gtker/wow_srp/releases/tag/v0.5.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://www.github.com/gtker/wow_srp"
keywords = ["wow", "world-of-warcraft", "srp6", "authentication", "login"]
categories = ["authentication", "cryptography", "game-development", "game-engines"]
readme = "README.md"
version = "0.6.0"
version = "0.7.0"
authors = ["Gtker <github@gtker.com"]
edition = "2018"
rust-version = "1.65.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Add the following to `Cargo.toml`:

```
[dependencies]
wow_srp = "0.6.0"
wow_srp = "0.7.0"
```

Or install with [cargo edit](https://crates.io/crates/cargo-edit):
Expand All @@ -36,7 +36,7 @@ Two different arbitrary precision integer libraries can be used, either:

```toml
[dependencies]
wow_srp = { version = "0.6.0", default-features = false, features = ["srp-fast-math", "wrath-header"] }
wow_srp = { version = "0.7.0", default-features = false, features = ["srp-fast-math", "wrath-header"] }
```

The `srp-fast-math` feature leads to a 50% decrease in total time. It is highly recommended to enable
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.6.0", features = ["srp-default-math", "tbc-header", "wrath-header"] }
//! wow_srp = { version = "0.7.0", features = ["srp-default-math", "tbc-header", "wrath-header"] }
//! ```
//!
//! Then go to either the [`client`] module or [`server`] module for specific instructions.
Expand All @@ -63,7 +63,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.6.0", default-features = false, features = ["srp-fast-math", "tbc-header", "wrath-header"] }
//! wow_srp = { version = "0.7.0", default-features = false, features = ["srp-fast-math", "tbc-header", "wrath-header"] }
//! ```
//!
//! The `srp-fast-math` feature leads to a 50% decrease in total time. It is highly recommended to enable
Expand Down

0 comments on commit 695f0e1

Please sign in to comment.