Skip to content

Commit 3fb51c7

Browse files
committed
Preping new release 0.4.3
1 parent 76a7da3 commit 3fb51c7

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This is small release/patch fixing a few bits here & there
6565
* `rand`, `0.7.3` --> `0.8.5`
6666
* `thiserror`, `1.0.23` --> `1.0.32`
6767
* `log` library is moved into `dev-dependencies` and bumped to `0.4.17`
68-
* Added code from PR [#24](/../../pull/24) - ensure dictionary parser not failing when file has tabs as well as whitespaces
68+
* Added code from PR [!24](/../../pull/24) - ensure dictionary parser not failing when file has tabs as well as whitespaces
6969

7070

7171
=============

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["MikhailMS <1488maiklm@gmail.com>"]
33
categories = ["network-programming"]
44
description = "Pure Rust implementation of RADIUS Server/Client"
5-
documentation = "https://docs.rs/radius-rust/0.4.2"
5+
documentation = "https://docs.rs/radius-rust/0.4.3"
66
edition = "2018"
77
include = [
88
"Cargo.toml",
@@ -20,7 +20,7 @@ license = "MIT"
2020
name = "radius-rust"
2121
readme = "README.md"
2222
repository = "https://github.com/MikhailMS/rust-radius"
23-
version = "0.4.2"
23+
version = "0.4.3"
2424

2525
[features]
2626
# Default doesn\t include anythin - keep it simple

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ Rationale behind this project:
2929
## Installation
3030
```
3131
[dependencies]
32-
radius-rust = "0.4.2"
32+
radius-rust = "0.4.3"
3333
3434
OR if you are planning to build Async RADIUS Client/Server
3535
3636
[dependencies]
37-
radius-rust = { version = "0.4.2", features = ["async-radius"] }
37+
radius-rust = { version = "0.4.3", features = ["async-radius"] }
3838
```
3939

4040

src/protocol/radius_packet.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,5 +828,4 @@ mod tests {
828828

829829
assert_eq!(expected_message_authenticator, packet.message_authenticator().unwrap());
830830
}
831-
832831
}

0 commit comments

Comments
 (0)