Skip to content

Commit

Permalink
RELEASE: 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gtker committed Sep 10, 2022
1 parent 8f95d97 commit c8d4b00
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

* Support for encrypting/decrypting TBC headers. This was mistakenly thought to be doable through the Vanilla `HeaderCrypto`. This is enabled with the `tbc-header` feature.

### Changed

### Deprecated
Expand All @@ -21,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.5.1] - 2022-09-10

### Added

* Support for encrypting/decrypting TBC headers. This was mistakenly thought to be doable through the Vanilla `HeaderCrypto`. This is enabled with the `tbc-header` feature.

## [0.5.0] - 2022-09-06

### Added
Expand Down Expand Up @@ -127,6 +131,7 @@ The smaller integer size indicates that the value fits into a u8 without truncat
### Added
- Initial release

[0.5.1]: https://github.com/gtker/wow_srp/releases/tag/v0.5.1
[0.5.0]: https://github.com/gtker/wow_srp/releases/tag/v0.5.0
[0.4.2]: https://github.com/gtker/wow_srp/releases/tag/v0.4.2
[0.4.1]: https://github.com/gtker/wow_srp/releases/tag/v0.4.1
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.5.0" # Remember to update docs in src/lib.rs, and README.md
version = "0.5.1" # Remember to update docs in src/lib.rs, and README.md
authors = ["Gtker <github@gtker.com"]
edition = "2018"
rust-version = "1.57.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.5.0"
wow_srp = "0.5.1"
```

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.5.0", default-features = false, features = ["srp-fast-math", "wrath-header"] }
wow_srp = { version = "0.5.1", 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 @@ -41,7 +41,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.5.0" }
//! wow_srp = { version = "0.5.1" }
//! ```
//!
//! Then go to either the [`client`] module or [`server`] module for specific instructions.
Expand All @@ -61,7 +61,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.5.0", default-features = false, features = ["srp-fast-math", "tbc-header", "wrath-header"] }
//! wow_srp = { version = "0.5.1", 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 c8d4b00

Please sign in to comment.