diff --git a/Cargo.lock b/Cargo.lock index 38427b45f82..d712155b42b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4585,7 +4585,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.136.0" +version = "0.137.0" dependencies = [ "hex", "ockam_abac", @@ -4637,7 +4637,7 @@ dependencies = [ [[package]] name = "ockam_api" -version = "0.79.0" +version = "0.80.0" dependencies = [ "base64-url", "bytes 1.7.2", @@ -4729,7 +4729,7 @@ dependencies = [ [[package]] name = "ockam_app_lib" -version = "0.136.0" +version = "0.137.0" dependencies = [ "cbindgen", "duct", @@ -4751,7 +4751,7 @@ dependencies = [ [[package]] name = "ockam_command" -version = "0.136.0" +version = "0.137.0" dependencies = [ "arboard", "assert_cmd", diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index 30a4dac901a..220825485f2 100644 --- a/implementations/rust/ockam/ockam/CHANGELOG.md +++ b/implementations/rust/ockam/ockam/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.137.0 - 2024-10-21 + +### Added + +- Improvements to commands outputs +- Updated dependencies + ## 0.136.0 - 2024-10-16 ### Added diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index 7e9a04bcb69..1ec4e64e511 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam" -version = "0.136.0" +version = "0.137.0" authors = ["Ockam Developers"] categories = [ "cryptography", diff --git a/implementations/rust/ockam/ockam/README.md b/implementations/rust/ockam/ockam/README.md index bb9eeb13c38..5830a70102f 100644 --- a/implementations/rust/ockam/ockam/README.md +++ b/implementations/rust/ockam/ockam/README.md @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam = "0.136.0" +ockam = "0.137.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_api/CHANGELOG.md b/implementations/rust/ockam/ockam_api/CHANGELOG.md index ba4f62e4f6e..9a21a7d4e7b 100644 --- a/implementations/rust/ockam/ockam_api/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_api/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.80.0 - 2024-10-21 + +### Added + +- Change behavior of how nodes' processes are stopped +- Improvements to commands outputs +- Return enrollment ticket hex-encoded +- Updated dependencies + ## 0.79.0 - 2024-10-16 ### Added diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index 075a3f7d7f0..67c0ded9d6b 100644 --- a/implementations/rust/ockam/ockam_api/Cargo.toml +++ b/implementations/rust/ockam/ockam_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_api" -version = "0.79.0" +version = "0.80.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -143,7 +143,7 @@ default-features = false features = ["std"] [dependencies.ockam] -version = "^0.136.0" +version = "^0.137.0" path = "../ockam" default-features = false features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"] diff --git a/implementations/rust/ockam/ockam_api/README.md b/implementations/rust/ockam/ockam_api/README.md index afb8d92a6fb..140024f249f 100644 --- a/implementations/rust/ockam/ockam_api/README.md +++ b/implementations/rust/ockam/ockam_api/README.md @@ -32,7 +32,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_api = "0.79.0" +ockam_api = "0.80.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md index 06e37a3ade1..c38b9cc63ea 100644 --- a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.137.0 - 2024-10-21 + +### Added + +- Change behavior of how nodes' processes are stopped +- Improvements to commands outputs +- Updated dependencies + ## 0.136.0 - 2024-10-16 ### Added diff --git a/implementations/rust/ockam/ockam_app_lib/Cargo.toml b/implementations/rust/ockam/ockam_app_lib/Cargo.toml index a37b31275c7..fada5c829d1 100644 --- a/implementations/rust/ockam/ockam_app_lib/Cargo.toml +++ b/implementations/rust/ockam/ockam_app_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_app_lib" -version = "0.136.0" +version = "0.137.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -37,8 +37,8 @@ rust-crypto = ["ockam_api/rust-crypto"] duct = "0.13.7" miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.24.1", features = ["alloc", "derive"] } -ockam = { path = "../ockam", version = "^0.136.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["std"] } +ockam = { path = "../ockam", version = "^0.137.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.118.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["cbor", "serde"] } serde = { version = "1.0", features = ["derive"] } @@ -50,7 +50,7 @@ tracing = { version = "0.1", default-features = false } tracing-core = { version = "0.1.32", default-features = false } [dev-dependencies] -ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["test-utils"] } tempfile = { version = "3.10.1" } [build-dependencies] diff --git a/implementations/rust/ockam/ockam_app_lib/README.md b/implementations/rust/ockam/ockam_app_lib/README.md index 96b47aba759..0c84a599a40 100644 --- a/implementations/rust/ockam/ockam_app_lib/README.md +++ b/implementations/rust/ockam/ockam_app_lib/README.md @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_app_lib = "0.136.0" +ockam_app_lib = "0.137.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_command/CHANGELOG.md b/implementations/rust/ockam/ockam_command/CHANGELOG.md index dbc9be15858..bf16160b63c 100644 --- a/implementations/rust/ockam/ockam_command/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_command/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.137.0 - 2024-10-21 + +### Added + +- Change behavior of how nodes' processes are stopped +- Improvements to commands outputs +- Add retry to the command's upgrade github request +- Return enrollment ticket hex-encoded +- Updated dependencies + ## 0.136.0 - 2024-10-16 ### Added diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index c0b7411045b..3e332841112 100644 --- a/implementations/rust/ockam/ockam_command/Cargo.toml +++ b/implementations/rust/ockam/ockam_command/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_command" -version = "0.136.0" +version = "0.137.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -70,9 +70,9 @@ indicatif = "0.17.8" indoc = "2.0.5" miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.24.1", features = ["derive", "alloc", "half"] } -ockam = { path = "../ockam", version = "^0.136.0", features = ["software_vault"] } +ockam = { path = "../ockam", version = "^0.137.0", features = ["software_vault"] } ockam_abac = { path = "../ockam_abac", version = "0.69.0", features = ["std"] } -ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["std"] } +ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.118.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["std"] } ockam_node = { path = "../ockam_node", version = "^0.128.0" } @@ -109,7 +109,7 @@ which = "6.0.2" [dev-dependencies] assert_cmd = "2" mockito = "1.5.0" -ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["test-utils"] } +ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["test-utils"] } ockam_macros = { path = "../ockam_macros", version = "^0.35.0" } proptest = "1.5.0" tempfile = "3.10.1" diff --git a/implementations/rust/ockam/ockam_command/README.md b/implementations/rust/ockam/ockam_command/README.md index 99ea84844de..f0bd2a78092 100644 --- a/implementations/rust/ockam/ockam_command/README.md +++ b/implementations/rust/ockam/ockam_command/README.md @@ -33,7 +33,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_command = "0.136.0" +ockam_command = "0.137.0" ``` ## License