Skip to content

Commit

Permalink
Preping new release 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailMS committed Mar 23, 2024
1 parent 76a7da3 commit 3fb51c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ This is small release/patch fixing a few bits here & there
* `rand`, `0.7.3` --> `0.8.5`
* `thiserror`, `1.0.23` --> `1.0.32`
* `log` library is moved into `dev-dependencies` and bumped to `0.4.17`
* Added code from PR [#24](/../../pull/24) - ensure dictionary parser not failing when file has tabs as well as whitespaces
* Added code from PR [!24](/../../pull/24) - ensure dictionary parser not failing when file has tabs as well as whitespaces


=============
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["MikhailMS <1488maiklm@gmail.com>"]
categories = ["network-programming"]
description = "Pure Rust implementation of RADIUS Server/Client"
documentation = "https://docs.rs/radius-rust/0.4.2"
documentation = "https://docs.rs/radius-rust/0.4.3"
edition = "2018"
include = [
"Cargo.toml",
Expand All @@ -20,7 +20,7 @@ license = "MIT"
name = "radius-rust"
readme = "README.md"
repository = "https://github.com/MikhailMS/rust-radius"
version = "0.4.2"
version = "0.4.3"

[features]
# Default doesn\t include anythin - keep it simple
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Rationale behind this project:
## Installation
```
[dependencies]
radius-rust = "0.4.2"
radius-rust = "0.4.3"
OR if you are planning to build Async RADIUS Client/Server
[dependencies]
radius-rust = { version = "0.4.2", features = ["async-radius"] }
radius-rust = { version = "0.4.3", features = ["async-radius"] }
```


Expand Down
1 change: 0 additions & 1 deletion src/protocol/radius_packet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -828,5 +828,4 @@ mod tests {

assert_eq!(expected_message_authenticator, packet.message_authenticator().unwrap());
}

}

0 comments on commit 3fb51c7

Please sign in to comment.