Skip to content

Commit

Permalink
Merge pull request #497 from mrmonday/version-bump
Browse files Browse the repository at this point in the history
Release v0.28.0
  • Loading branch information
mrmonday committed May 15, 2021
2 parents 91be03a + c798c37 commit 1410816
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 28 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet"
version = "0.27.2"
version = "0.28.0"
authors = [ "Robert Clipsham <robert@octarineparrot.com>" ]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -22,11 +22,11 @@ serde = ["pnet_base/serde", "pnet_datalink/serde"]
[dependencies]
ipnetwork = "0.18.0"

pnet_base = { path = "pnet_base", version = "0.27.2" }
pnet_sys = { path = "pnet_sys", version = "0.27.2" }
pnet_datalink = { path = "pnet_datalink", version = "0.27.2" }
pnet_transport = { path = "pnet_transport", version = "0.27.2" }
pnet_packet = { path = "pnet_packet", version = "0.27.2" }
pnet_base = { path = "pnet_base", version = "0.28.0" }
pnet_sys = { path = "pnet_sys", version = "0.28.0" }
pnet_datalink = { path = "pnet_datalink", version = "0.28.0" }
pnet_transport = { path = "pnet_transport", version = "0.28.0" }
pnet_packet = { path = "pnet_packet", version = "0.28.0" }

[dev-dependencies]
time = "0.2.26"
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,10 @@ To use `libpnet` in your project, add the following to your Cargo.toml:

```
[dependencies.pnet]
version = "0.27.2"
version = "0.28.0"
```

`libpnet` should work on any Rust channel (stable, beta, or nightly), starting
with Rust 1.34.2. When using a nightly version of Rust, you may wish to use pass
`--no-default-features --features nightly` to Cargo, to enable faster build
times.
`libpnet` should work with the latest stable version of Rust.

When running the test suite, there are a number of networking tests which will
likely fail - the easiest way to workaround this is to run `cargo test` as a
Expand Down
2 changes: 1 addition & 1 deletion pnet_base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_base"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand Down
6 changes: 3 additions & 3 deletions pnet_datalink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_datalink"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -16,8 +16,8 @@ netmap = []
[dependencies]
libc = "0.2.94"
ipnetwork = "0.18.0"
pnet_base = { path = "../pnet_base", version = "0.27.2" }
pnet_sys = { path = "../pnet_sys", version = "0.27.2" }
pnet_base = { path = "../pnet_base", version = "0.28.0" }
pnet_sys = { path = "../pnet_sys", version = "0.28.0" }

pcap = { version = "0.8.1", optional = true }
netmap_sys = { version = "0.1.4", optional = true, features = ["netmap_with_libs"] }
Expand Down
4 changes: 2 additions & 2 deletions pnet_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_macros"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Pierre Chifflier <chifflier@wzdftpd.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -19,7 +19,7 @@ default = []
travis = []

[dev-dependencies]
pnet_macros_support = { path = "../pnet_macros_support", version = "0.27.2" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.28.0" }
trybuild = "1.0.42"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions pnet_macros_support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "pnet_macros_support"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,4 +11,4 @@ readme = "../README.md"
keywords = ["networking", "bitfields", "packet", "protocol"]

[dependencies]
pnet_base = { path = "../pnet_base", version = "0.27.2" }
pnet_base = { path = "../pnet_base", version = "0.28.0" }
8 changes: 4 additions & 4 deletions pnet_packet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_packet"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,9 +11,9 @@ keywords = ["networking", "packet", "parsing", "raw"]
categories = ["network-programming", "parser-implementations"]

[dependencies]
pnet_base = { path = "../pnet_base", version = "0.27.2" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.27.2" }
pnet_macros = { path = "../pnet_macros", version = "0.27.2" }
pnet_base = { path = "../pnet_base", version = "0.28.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.28.0" }
pnet_macros = { path = "../pnet_macros", version = "0.28.0" }

[build-dependencies]
glob = "0.3.0"
2 changes: 1 addition & 1 deletion pnet_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_sys"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand Down
8 changes: 4 additions & 4 deletions pnet_transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_transport"
version = "0.27.2"
version = "0.28.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -12,6 +12,6 @@ categories = ["network-programming"]

[dependencies]
libc = "0.2.94"
pnet_base = { path = "../pnet_base", version = "0.27.2" }
pnet_sys = { path = "../pnet_sys", version = "0.27.2" }
pnet_packet = { path = "../pnet_packet", version = "0.27.2" }
pnet_base = { path = "../pnet_base", version = "0.28.0" }
pnet_sys = { path = "../pnet_sys", version = "0.28.0" }
pnet_packet = { path = "../pnet_packet", version = "0.28.0" }

0 comments on commit 1410816

Please sign in to comment.