Skip to content

Commit

Permalink
sawp: release package(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
sa-sawp committed May 20, 2022
1 parent 9350030 commit 0986f4e
Show file tree
Hide file tree
Showing 16 changed files with 45 additions and 42 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->

## [Unreleased] - ReleaseDate

## [0.10.0] - 2022-05-20
### Fixed / Changed
- modbus: add option for strict probing
- derive: pin proc-macro-crate to v1.1.0
Expand Down Expand Up @@ -108,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- sawp-modbus: FFI support.

<!-- next-url -->
[Unreleased]: https://github.com/CybercentreCanada/sawp/compare/sawp-0.9.0...HEAD
[Unreleased]: https://github.com/CybercentreCanada/sawp/compare/sawp-0.10.0...HEAD
[0.10.0]: https://github.com/CybercentreCanada/sawp/releases/tag/sawp-0.10.0
[0.9.0]: https://github.com/CybercentreCanada/sawp/releases/tag/sawp-0.9.0
[0.8.0]: https://github.com/CybercentreCanada/sawp/releases/tag/sawp-0.8.0
[0.7.0]: https://github.com/CybercentreCanada/sawp/releases/tag/sawp-0.7.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "Security Aware Wire Protocol parsing library"
readme = "README.md"
Expand Down Expand Up @@ -52,7 +52,7 @@ clap = "~2.33"
criterion = "=0.3.4"

[dependencies]
sawp-ffi = { path = "sawp-ffi", version = "^0.9.0", optional = true}
sawp-ffi = { path = "sawp-ffi", version = "^0.10.0", optional = true}
nom = "5.1.2"

# TODO: fails to build with half 1.8 on our MSRV of 1.41.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ types.
## Example
```
[dependencies]
sawp-modbus = "0.9.0"
sawp = "0.9.0"
sawp-modbus = "0.10.0"
sawp = "0.10.0"
```

## FFI Support
Expand Down
4 changes: 2 additions & 2 deletions sawp-diameter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-diameter"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for Diameter"
readme = "../README.md"
Expand All @@ -21,7 +21,7 @@ include = [
verbose = ["sawp/verbose"]

[dependencies]
sawp = { path = "..", version = "^0.9.0" }
sawp = { path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"
bitflags = "~1.2.1"
Expand Down
8 changes: 4 additions & 4 deletions sawp-dns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-dns"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for DNS"
readme = "../README.md"
Expand All @@ -25,9 +25,9 @@ verbose = ["sawp/verbose"]
cbindgen = {version = "0.15", optional = true}

[dependencies]
sawp-ffi = {path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp = {path = "..", version = "^0.9.0" }
sawp-ffi = {path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }
sawp = {path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"
byteorder = "1.4.3"
Expand Down
4 changes: 2 additions & 2 deletions sawp-ffi-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-ffi-derive"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "Generate cbindgen compatible member accessors for structs and enums"
readme = "../README.md"
Expand All @@ -25,7 +25,7 @@ proc-macro2 = "1.0.36"
heck = "0.3"

[dev-dependencies]
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }

[lib]
proc-macro = true
Expand Down
6 changes: 3 additions & 3 deletions sawp-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-ffi"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "FFI helper macros and traits"
readme = "../README.md"
Expand All @@ -17,8 +17,8 @@ include = [
]

[dependencies]
sawp-ffi-derive = { path = "../sawp-ffi-derive", version = "^0.9.0" }
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp-ffi-derive = { path = "../sawp-ffi-derive", version = "^0.10.0" }
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }

# Override default replacements
[package.metadata.release]
Expand Down
4 changes: 2 additions & 2 deletions sawp-file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-file"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP File Format"
readme = "../README.md"
Expand All @@ -18,7 +18,7 @@ include = [
]

[dependencies]
sawp = { path = "..", version = "^0.9.0" }
sawp = { path = "..", version = "^0.10.0" }
rmp-serde = "0.14.4"
serde = "1.0.116"
serde_derive = "1.0.116"
Expand Down
2 changes: 1 addition & 1 deletion sawp-flags-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-flags-derive"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP BitFlags Handling and Storage Derive Macro"
readme = "../README.md"
Expand Down
4 changes: 2 additions & 2 deletions sawp-flags/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-flags"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP BitFlags Handling and Storage"
readme = "../README.md"
Expand All @@ -17,7 +17,7 @@ include = [
]

[dependencies]
sawp-flags-derive = { path = "../sawp-flags-derive", version = "^0.9.0" }
sawp-flags-derive = { path = "../sawp-flags-derive", version = "^0.10.0" }

# Override default replacements
[package.metadata.release]
Expand Down
8 changes: 4 additions & 4 deletions sawp-gre/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-gre"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for GRE"
readme = "../README.md"
Expand All @@ -26,9 +26,9 @@ cbindgen = {version = "0.15.0", optional = true}
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sawp-ffi = { path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp = {path = "..", version = "^0.9.0" }
sawp-ffi = { path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }
sawp = {path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"

Expand Down
4 changes: 2 additions & 2 deletions sawp-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-json"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for Json"
readme = "../README.md"
Expand All @@ -21,7 +21,7 @@ include = [
verbose = ["sawp/verbose"]

[dependencies]
sawp = { path = "..", version = "^0.9.0" }
sawp = { path = "..", version = "^0.10.0" }
serde = "1.0"
serde_json = "1.0"

Expand Down
8 changes: 4 additions & 4 deletions sawp-modbus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-modbus"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for Modbus"
readme = "../README.md"
Expand All @@ -25,9 +25,9 @@ verbose = ["sawp/verbose"]
cbindgen = {version = "0.15", optional = true}

[dependencies]
sawp-ffi = { path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp = { path = "..", version = "^0.9.0" }
sawp-ffi = { path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }
sawp = { path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"

Expand Down
8 changes: 4 additions & 4 deletions sawp-pop3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-pop3"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for POP3"
readme = "../README.md"
Expand All @@ -25,9 +25,9 @@ ffi = ["cbindgen", "sawp/ffi", "sawp-ffi"]
cbindgen = {version = "0.15", optional = true}

[dependencies]
sawp-ffi = { path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp = { path = "..", version = "^0.9.0" }
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp-ffi = { path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp = { path = "..", version = "^0.10.0" }
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }
nom = "5.1.2"

[lib]
Expand Down
8 changes: 4 additions & 4 deletions sawp-resp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-resp"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for RESP"
readme = "../README.md"
Expand All @@ -25,9 +25,9 @@ verbose = ["sawp/verbose"]
cbindgen = {version = "0.15", optional = true}

[dependencies]
sawp-ffi = {path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.9.0" }
sawp = {path = "..", version = "^0.9.0" }
sawp-ffi = {path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp-flags = { path = "../sawp-flags", version = "^0.10.0" }
sawp = {path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"
byteorder = "1.4.3"
Expand Down
6 changes: 3 additions & 3 deletions sawp-tftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sawp-tftp"
version = "0.9.0"
version = "0.10.0"
authors = ["Canadian Centre for Cyber Security <[email protected]>"]
description = "SAWP Protocol Parser for TFTP"
readme = "../README.md"
Expand All @@ -25,8 +25,8 @@ ffi = ["cbindgen", "sawp/ffi", "sawp-ffi"]
cbindgen = {version = "0.15", optional = true}

[dependencies]
sawp-ffi = { path = "../sawp-ffi", version = "^0.9.0", optional = true}
sawp = { path = "..", version = "^0.9.0" }
sawp-ffi = { path = "../sawp-ffi", version = "^0.10.0", optional = true}
sawp = { path = "..", version = "^0.10.0" }
nom = "5.1.2"
num_enum = "0.5.1"

Expand Down

0 comments on commit 0986f4e

Please sign in to comment.