diff --git a/Cargo.lock b/Cargo.lock index ca7d898b2c0..03e6d97d4c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4752,7 +4752,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.103.0" +version = "0.104.0" dependencies = [ "arrayref", "dyn-clone", @@ -4776,7 +4776,7 @@ dependencies = [ [[package]] name = "ockam_abac" -version = "0.37.0" +version = "0.38.0" dependencies = [ "either", "lmdb-rkv", @@ -4800,7 +4800,7 @@ dependencies = [ [[package]] name = "ockam_api" -version = "0.46.0" +version = "0.47.0" dependencies = [ "anyhow", "aws-config", @@ -4883,7 +4883,7 @@ dependencies = [ [[package]] name = "ockam_app_lib" -version = "0.7.0" +version = "0.8.0" dependencies = [ "cbindgen", "duct", @@ -4910,7 +4910,7 @@ dependencies = [ [[package]] name = "ockam_command" -version = "0.103.0" +version = "0.104.0" dependencies = [ "anyhow", "arboard", @@ -5024,7 +5024,7 @@ dependencies = [ [[package]] name = "ockam_identity" -version = "0.91.0" +version = "0.92.0" dependencies = [ "arrayref", "async-trait", @@ -5122,7 +5122,7 @@ dependencies = [ [[package]] name = "ockam_transport_ble" -version = "0.58.0" +version = "0.59.0" dependencies = [ "atsame54_xpro", "bluenrg", @@ -5177,7 +5177,7 @@ dependencies = [ [[package]] name = "ockam_transport_udp" -version = "0.37.0" +version = "0.38.0" dependencies = [ "bytes 1.5.0", "futures-util", diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index 6434097ae2a..15852e87901 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.104.0 - 2023-11-17 + +### Changed + +- Use `Identifier` as a return type in public api +- Updated dependencies + ## 0.103.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index c3fe5bfdbe0..2b150a12b7d 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam" -version = "0.103.0" +version = "0.104.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -85,9 +85,9 @@ arrayref = "0.3" dyn-clone = "1.0" hex = { version = "0.4", default-features = false } minicbor = { version = "0.20.0", features = ["alloc", "derive"] } -ockam_abac = { path = "../ockam_abac", version = "^0.37.0", default_features = false, optional = true } +ockam_abac = { path = "../ockam_abac", version = "^0.38.0", default_features = false, optional = true } ockam_core = { path = "../ockam_core", version = "^0.93.0", default-features = false } -ockam_identity = { path = "../ockam_identity", version = "^0.91.0", default_features = false } +ockam_identity = { path = "../ockam_identity", version = "^0.92.0", default_features = false } ockam_macros = { path = "../ockam_macros", version = "^0.32.0", default_features = false } ockam_node = { path = "../ockam_node", version = "^0.98.0", default-features = false } ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0", optional = true } diff --git a/implementations/rust/ockam/ockam/README.md b/implementations/rust/ockam/ockam/README.md index 2b9a3515281..016c829fb93 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.103.0" +ockam = "0.104.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_abac/CHANGELOG.md b/implementations/rust/ockam/ockam_abac/CHANGELOG.md index f1412a5ee2d..7630912852e 100644 --- a/implementations/rust/ockam/ockam_abac/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_abac/CHANGELOG.md @@ -4,6 +4,12 @@ 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.38.0 - 2023-11-17 + +### Changed + +- Updated dependencies + ## 0.37.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_abac/Cargo.toml b/implementations/rust/ockam/ockam_abac/Cargo.toml index f4c09d8d991..8933711706d 100644 --- a/implementations/rust/ockam/ockam_abac/Cargo.toml +++ b/implementations/rust/ockam/ockam_abac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_abac" -version = "0.37.0" +version = "0.38.0" authors = ["Ockam Developers"] categories = ["cryptography", "authorization"] edition = "2021" @@ -38,7 +38,7 @@ lmdb-rkv = { version = "0.14.0", optional = true } minicbor = { version = "0.20.0", features = ["derive", "alloc"] } ockam_core = { version = "0.93.0", path = "../ockam_core", default-features = false } ockam_executor = { version = "0.61.0", path = "../ockam_executor", default-features = false } -ockam_identity = { version = "0.91.0", path = "../ockam_identity", default-features = false } +ockam_identity = { version = "0.92.0", path = "../ockam_identity", default-features = false } once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] } # optional: regex = { version = "1.10.2", default-features = false, optional = true } diff --git a/implementations/rust/ockam/ockam_abac/README.md b/implementations/rust/ockam/ockam_abac/README.md index 85269098a5c..3d8218f8006 100644 --- a/implementations/rust/ockam/ockam_abac/README.md +++ b/implementations/rust/ockam/ockam_abac/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_abac = "0.37.0" +ockam_abac = "0.38.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_api/CHANGELOG.md b/implementations/rust/ockam/ockam_api/CHANGELOG.md index d1905165dfa..7a8574f2bc3 100644 --- a/implementations/rust/ockam/ockam_api/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_api/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.47.0 - 2023-11-17 + +### Changed + +- Use `Identifier` as a return type in public api +- Updated dependencies + ## 0.46.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index 7dca95c5534..2e6e2d6d285 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.46.0" +version = "0.47.0" authors = ["Ockam Developers"] edition = "2021" homepage = "https://github.com/ockam-network/ockam" @@ -87,13 +87,13 @@ default-features = false features = ["std"] [dependencies.ockam] -version = "^0.103.0" +version = "^0.104.0" path = "../ockam" default-features = false features = ["ockam_transport_tcp", "software_vault_storage"] [dependencies.ockam_abac] -version = "0.37.0" +version = "0.38.0" path = "../ockam_abac" default-features = false diff --git a/implementations/rust/ockam/ockam_api/README.md b/implementations/rust/ockam/ockam_api/README.md index b6c384be1ec..a247c1b437c 100644 --- a/implementations/rust/ockam/ockam_api/README.md +++ b/implementations/rust/ockam/ockam_api/README.md @@ -140,7 +140,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_api = "0.46.0" +ockam_api = "0.47.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_app/Cargo.toml b/implementations/rust/ockam/ockam_app/Cargo.toml index 9c2d1bfde6c..21689963e2c 100644 --- a/implementations/rust/ockam/ockam_app/Cargo.toml +++ b/implementations/rust/ockam/ockam_app/Cargo.toml @@ -34,8 +34,8 @@ duct = "0.13.6" hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] } log = { version = "0.4.20", optional = true } miette = { version = "5.10.0", features = ["fancy-no-backtrace"] } -ockam = { path = "../ockam", version = "^0.103.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.46.0", features = ["std"] } +ockam = { path = "../ockam", version = "^0.104.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.47.0", features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.93.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] } ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" } diff --git a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md b/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md index f4f4da5f867..eaa4af8dad2 100644 --- a/implementations/rust/ockam/ockam_app_lib/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_app_lib/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.8.0 - 2023-11-17 + +### Added + +- Added persistent state for incoming services in the app + +### Changed + +- Updated dependencies + ## 0.7.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_app_lib/Cargo.toml b/implementations/rust/ockam/ockam_app_lib/Cargo.toml index 22eb0c1e774..cfae3cccd78 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.7.0" +version = "0.8.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -34,8 +34,8 @@ hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde libc = "0.2" miette = { version = "5.10.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.20.0", features = ["alloc", "derive"] } -ockam = { path = "../ockam", version = "^0.103.0", features = ["software_vault"] } -ockam_api = { path = "../ockam_api", version = "0.46.0", features = ["std"] } +ockam = { path = "../ockam", version = "^0.104.0", features = ["software_vault"] } +ockam_api = { path = "../ockam_api", version = "0.47.0", features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.93.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] } ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" } diff --git a/implementations/rust/ockam/ockam_app_lib/README.md b/implementations/rust/ockam/ockam_app_lib/README.md index bb1235b6846..874587cb1c4 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.7.0" +ockam_app_lib = "0.8.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_command/CHANGELOG.md b/implementations/rust/ockam/ockam_command/CHANGELOG.md index ed7e10dfb76..7d54bc627a5 100644 --- a/implementations/rust/ockam/ockam_command/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_command/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.104.0 - 2023-11-17 + +### Changed + +- Use `Identifier` as a return type in public api +- Updated dependencies + ## 0.103.0 - 2023-11-08 ### Added diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index e188ef839ec..0849ae77b70 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.103.0" +version = "0.104.0" authors = ["Ockam Developers"] categories = [ "cryptography", @@ -77,9 +77,9 @@ itertools = "0.11" miette = { version = "5.10.0", features = ["fancy-no-backtrace"] } minicbor = { version = "0.20.0", features = ["derive", "alloc", "half"] } nix = "0.27" -ockam = { path = "../ockam", version = "^0.103.0", features = ["software_vault"] } -ockam_abac = { path = "../ockam_abac", version = "0.37.0", features = ["std"] } -ockam_api = { path = "../ockam_api", version = "0.46.0", features = ["std"] } +ockam = { path = "../ockam", version = "^0.104.0", features = ["software_vault"] } +ockam_abac = { path = "../ockam_abac", version = "0.38.0", features = ["std"] } +ockam_api = { path = "../ockam_api", version = "0.47.0", features = ["std"] } ockam_core = { path = "../ockam_core", version = "^0.93.0" } ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["std"] } ockam_node = { path = "../ockam_node", version = "^0.98.0" } diff --git a/implementations/rust/ockam/ockam_command/README.md b/implementations/rust/ockam/ockam_command/README.md index 2784df7daf6..9edf9200e3f 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.103.0" +ockam_command = "0.104.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_identity/CHANGELOG.md b/implementations/rust/ockam/ockam_identity/CHANGELOG.md index bfae41c4ea2..dca6b86b517 100644 --- a/implementations/rust/ockam/ockam_identity/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_identity/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.92.0 - 2023-11-17 + +### Changed + +- Use `Identifier` as a return type in public api +- Updated dependencies + ## 0.91.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_identity/Cargo.toml b/implementations/rust/ockam/ockam_identity/Cargo.toml index f90157efd17..11224f3c6d2 100644 --- a/implementations/rust/ockam/ockam_identity/Cargo.toml +++ b/implementations/rust/ockam/ockam_identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_identity" -version = "0.91.0" +version = "0.92.0" authors = ["Ockam Developers"] categories = ["cryptography", "authentication"] edition = "2021" diff --git a/implementations/rust/ockam/ockam_identity/README.md b/implementations/rust/ockam/ockam_identity/README.md index 81b4064e133..2daab6b0197 100644 --- a/implementations/rust/ockam/ockam_identity/README.md +++ b/implementations/rust/ockam/ockam_identity/README.md @@ -31,7 +31,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_identity = "0.91.0" +ockam_identity = "0.92.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md index 698338eee42..e61d22c26f8 100644 --- a/implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_ble/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.59.0 - 2023-11-17 + +### Changed + +- Use `Identifier` as a return type in public api +- Updated dependencies + ## 0.58.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml index 37948030409..4c349bb534f 100644 --- a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_ble" -version = "0.58.0" +version = "0.59.0" authors = ["Ockam Developers"] autoexamples = false categories = ["cryptography", "asynchronous", "authentication", "embedded", "network-programming"] @@ -124,7 +124,7 @@ cortex-m = "0.7.7" riscv = "0.10.0" [dev-dependencies] -ockam_identity = { path = "../ockam_identity", version = "^0.91.0" } +ockam_identity = { path = "../ockam_identity", version = "^0.92.0" } ockam_vault = { path = "../ockam_vault", version = "^0.91.0" } [[example]] diff --git a/implementations/rust/ockam/ockam_transport_ble/README.md b/implementations/rust/ockam/ockam_transport_ble/README.md index 7e8403252ae..15af1dc2214 100644 --- a/implementations/rust/ockam/ockam_transport_ble/README.md +++ b/implementations/rust/ockam/ockam_transport_ble/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_ble = "0.58.0" +ockam_transport_ble = "0.59.0" ``` ## License diff --git a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md index 7cf29434e6f..9c7e937bc4c 100644 --- a/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md +++ b/implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md @@ -4,6 +4,12 @@ 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.38.0 - 2023-11-17 + +### Changed + +- Updated dependencies + ## 0.37.0 - 2023-11-08 ### Changed diff --git a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml index 7d4cb839187..1e5073b69d6 100644 --- a/implementations/rust/ockam/ockam_transport_udp/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_udp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ockam_transport_udp" -version = "0.37.0" +version = "0.38.0" authors = ["Ockam Developers"] autoexamples = false categories = [ @@ -42,7 +42,7 @@ tokio-util = { version = "0.7.9", features = ["net", "codec"] } tracing = { version = "0.1", default-features = false } [dev-dependencies] -ockam = { path = "../ockam", version = "^0.103.0" } +ockam = { path = "../ockam", version = "^0.104.0" } ockam_macros = { path = "../ockam_macros", version = "^0.32.0" } [[example]] diff --git a/implementations/rust/ockam/ockam_transport_udp/README.md b/implementations/rust/ockam/ockam_transport_udp/README.md index 9681d8ced27..a22ac2df5ad 100644 --- a/implementations/rust/ockam/ockam_transport_udp/README.md +++ b/implementations/rust/ockam/ockam_transport_udp/README.md @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam_transport_udp = "0.37.0" +ockam_transport_udp = "0.38.0" ``` ## License