Skip to content

Commit

Permalink
RELEASE: 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gtker committed Jun 3, 2022
1 parent 076ebe6 commit e4cd940
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 @@ -17,10 +17,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

* `NormalizedString` accepting empty usernames and passwords.

### Security

## [0.4.2] - 2022-06-03

### Fixed

* `NormalizedString` accepting empty usernames and passwords.

## [0.4.1] - 2022-05-09

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

[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
[0.4.0]: https://github.com/gtker/wow_srp/releases/tag/v0.4.0
[0.3.0]: https://github.com/gtker/wow_srp/releases/tag/v0.3.0
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.4.1" # Remember to update html_root_url and docs in src/lib.rs, and README.md
version = "0.4.2" # Remember to update html_root_url and docs in src/lib.rs, and README.md
authors = ["Gtker <github@gtker.com"]
edition = "2018"
rust-version = "1.48.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.4.1"
wow_srp = "0.4.2"
```

Or install with [cargo edit](https://crates.io/crates/cargo-edit):
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.4.1" }
//! wow_srp = { version = "0.4.2" }
//! ```
//!
//! Then go to either the [`client`] module or [`server`] module for specific instructions.
Expand All @@ -65,7 +65,7 @@
//!
//! ```toml
//! [dependencies]
//! wow_srp = { version = "0.4.1", default-features = false, features = ["fast-math"] }
//! wow_srp = { version = "0.4.2", default-features = false, features = ["fast-math"] }
//! ```
//!
//! The `fast-math` feature leads to a 50% decrease in total time. It is highly recommended to enable
Expand All @@ -89,7 +89,7 @@
//!
//! [archive]: https://web.archive.org/web/20210620154707/https://wowdev.wiki/Login_Packet

#![doc(html_root_url = "https://docs.rs/wow_srp/0.4.1")]
#![doc(html_root_url = "https://docs.rs/wow_srp/0.4.2")]
#![forbid(unsafe_code)]
#![warn(
clippy::perf,
Expand Down

0 comments on commit e4cd940

Please sign in to comment.