Skip to content

Commit

Permalink
Bump version to 0.26.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kishiguro committed Apr 30, 2020
1 parent 07e73e2 commit 5498ff4
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 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.25.0"
version = "0.26.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"]
[dependencies]
ipnetwork = "0.16.0"

pnet_base = "0.25.0"
pnet_sys = { path = "pnet_sys", version = "0.25.0" }
pnet_datalink = { path = "pnet_datalink", version = "0.25.0" }
pnet_transport = { path = "pnet_transport", version = "0.25.0" }
pnet_packet = { path = "pnet_packet", version = "0.25.0" }
pnet_base = "0.26.0"
pnet_sys = { path = "pnet_sys", version = "0.26.0" }
pnet_datalink = { path = "pnet_datalink", version = "0.26.0" }
pnet_transport = { path = "pnet_transport", version = "0.26.0" }
pnet_packet = { path = "pnet_packet", version = "0.26.0" }

[dev-dependencies]
time = ">=0.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To use `libpnet` in your project, add the following to your Cargo.toml:

```
[dependencies.pnet]
version = "0.25.0"
version = "0.26.0"
```

`libpnet` should work on any Rust channel (stable, beta, or nightly), starting
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.25.0"
version = "0.26.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.25.0"
version = "0.26.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 @@ -15,8 +15,8 @@ netmap = []
[dependencies]
libc = "0.2.42"
ipnetwork = "0.16.0"
pnet_base = "0.25.0"
pnet_sys = { path = "../pnet_sys", version = "0.25.0" }
pnet_base = "0.26.0"
pnet_sys = { path = "../pnet_sys", version = "0.26.0" }

pcap = { version = "0.7", optional = true }
netmap_sys = { version = ">=0.0", optional = true, features = ["netmap_with_libs"] }
Expand Down
6 changes: 3 additions & 3 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.25.0"
version = "0.26.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -15,8 +15,8 @@ default = []
travis = []

[dev-dependencies]
pnet_base = "0.25.0"
pnet_macros_support = { path = "../pnet_macros_support", version = "0.25.0" }
pnet_base = "0.26.0"
pnet_macros_support = { path = "../pnet_macros_support", version = "0.26.0" }

[dependencies]
regex = "1.3"
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.25.0"
version = "0.26.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 = "0.25.0"
pnet_base = "0.26.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.25.0"
version = "0.26.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,10 +11,10 @@ categories = ["network-programming", "parser-implementations"]
build = "build.rs"

[dependencies]
pnet_base = "0.25.0"
pnet_macros_support = { path = "../pnet_macros_support", version = "0.25.0" }
pnet_base = "0.26.0"
pnet_macros_support = { path = "../pnet_macros_support", version = "0.26.0" }

[build-dependencies]
glob = "0.2"
syntex = "0.42"
pnet_macros = { path = "../pnet_macros", version = "0.25.0" }
pnet_macros = { path = "../pnet_macros", version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,6 +11,6 @@ categories = ["network-programming"]

[dependencies]
libc = "0.2.39"
pnet_base = "0.25.0"
pnet_sys = { path = "../pnet_sys", version = "0.25.0" }
pnet_packet = { path = "../pnet_packet", version = "0.25.0" }
pnet_base = "0.26.0"
pnet_sys = { path = "../pnet_sys", version = "0.26.0" }
pnet_packet = { path = "../pnet_packet", version = "0.26.0" }

0 comments on commit 5498ff4

Please sign in to comment.