Skip to content

Commit c1efabc

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 30-06-2025
1 parent b749911 commit c1efabc

File tree

42 files changed

+169
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+169
-80
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ doc = false
1111

1212
[dependencies]
1313
miette = "7.5.0"
14-
ockam = { path = "../rust/ockam/ockam", version = "^0.156.0" }
15-
ockam_api = { path = "../rust/ockam/ockam_api", version = "^0.99.0" }
14+
ockam = { path = "../rust/ockam/ockam", version = "^0.157.0" }
15+
ockam_api = { path = "../rust/ockam/ockam_api", version = "^0.100.0" }
1616
once_cell = "1.21.3"
1717
pyo3 = { version = "0.24.1", features = ["abi3-py312", "experimental-async", "serde"] }
1818
pyo3-async-runtimes = { git = "https://github.com/davide-baldo/pyo3-async-runtimes.git", branch = "davide-baldo/avoid-gil-in-async-threads", features = ["attributes", "tokio-runtime"] }

implementations/rust/ockam/ockam/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.157.0 - 2025-06-30
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.156.0 - 2025-06-26
814

915
### Added

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.156.0"
3+
version = "0.157.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -89,21 +89,21 @@ path = "tests/main.rs"
8989

9090
[dependencies]
9191
hex = { version = "0.4", default-features = false }
92-
ockam_abac = { path = "../ockam_abac", version = "^0.83.0", default-features = false, optional = true }
92+
ockam_abac = { path = "../ockam_abac", version = "^0.84.0", default-features = false, optional = true }
9393
ockam_core = { path = "../ockam_core", version = "^0.126.0", default-features = false }
94-
ockam_identity = { path = "../ockam_identity", version = "^0.137.0", default-features = false }
94+
ockam_identity = { path = "../ockam_identity", version = "^0.138.0", default-features = false }
9595
ockam_macros = { path = "../ockam_macros", version = "^0.39.0", default-features = false }
96-
ockam_node = { path = "../ockam_node", version = "^0.141.0", default-features = false }
96+
ockam_node = { path = "../ockam_node", version = "^0.142.0", default-features = false }
9797
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.104.0", default-features = false }
98-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.139.0", default-features = false, optional = true }
99-
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.83.0", default-features = false, optional = true }
100-
ockam_vault = { path = "../ockam_vault", version = "^0.135.0", default-features = false, optional = true }
98+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.140.0", default-features = false, optional = true }
99+
ockam_transport_udp = { path = "../ockam_transport_udp", version = "^0.84.0", default-features = false, optional = true }
100+
ockam_vault = { path = "../ockam_vault", version = "^0.136.0", default-features = false, optional = true }
101101
rand = { version = "0.8", default-features = false }
102102
serde = { version = "1.0", default-features = false, features = ["derive"] }
103103
tracing = { version = "0.1", default-features = false }
104104

105105
[dev-dependencies]
106-
ockam_vault = { path = "../ockam_vault", version = "^0.135.0" }
106+
ockam_vault = { path = "../ockam_vault", version = "^0.136.0" }
107107
rand_xorshift = "0.3"
108108
serde_json = "1.0"
109109
trybuild = { version = "1.0", features = ["diff"] }

implementations/rust/ockam/ockam/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:
4949

5050
```
5151
[dependencies]
52-
ockam = "0.156.0"
52+
ockam = "0.157.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.84.0 - 2025-06-30
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.83.0 - 2025-06-26
814

915
### Added

implementations/rust/ockam/ockam_abac/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.83.0"
3+
version = "0.84.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography"]
66
edition = "2021"
@@ -40,8 +40,8 @@ cfg-if = "1.0.0"
4040
either = { version = "1.13.0", default-features = false }
4141
minicbor = { version = "0.26.3", default-features = false, features = ["derive"] }
4242
ockam_core = { version = "0.126.0", path = "../ockam_core", default-features = false }
43-
ockam_identity = { version = "0.137.0", path = "../ockam_identity", default-features = false }
44-
ockam_node = { version = "0.141.0", path = "../ockam_node", default-features = false }
43+
ockam_identity = { version = "0.138.0", path = "../ockam_identity", default-features = false }
44+
ockam_node = { version = "0.142.0", path = "../ockam_node", default-features = false }
4545
once_cell = { version = "1.21.3", default-features = false, features = ["alloc"] }
4646
serde = { version = "1", default-features = false, features = ["derive"] }
4747
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
@@ -60,7 +60,7 @@ wast = { version = "220.0.0", default-features = false, optional = true }
6060
winnow = { version = "0.6.25", default-features = false, optional = true, features = ["alloc"] }
6161

6262
[dev-dependencies]
63-
ockam_identity = { version = "0.137.0", path = "../ockam_identity" }
63+
ockam_identity = { version = "0.138.0", path = "../ockam_identity" }
6464
quickcheck = "1.0.3"
6565
rand = "0.8.5"
6666
serde_json = "1.0.133"

implementations/rust/ockam/ockam_abac/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:
1717

1818
```
1919
[dependencies]
20-
ockam_abac = "0.83.0"
20+
ockam_abac = "0.84.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.100.0 - 2025-06-30
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.99.0 - 2025-06-26
814

915
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.99.0"
3+
version = "0.100.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -125,7 +125,7 @@ utoipa = { version = "^5.3", features = ["yaml", "openapi_extensions", "non_stri
125125

126126
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.71.0", features = ["cbor", "serde"] }
127127
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.104.0" }
128-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.139.0", default-features = false, features = ["std"] }
128+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.140.0", default-features = false, features = ["std"] }
129129
tonic = { version = "0.12", features = ["default", "gzip"] }
130130

131131
[dependencies.ockam_core]
@@ -135,33 +135,33 @@ default-features = false
135135
features = ["no_std", "alloc"]
136136

137137
[dependencies.ockam_node]
138-
version = "0.141.0"
138+
version = "0.142.0"
139139
path = "../ockam_node"
140140
default-features = false
141141
features = ["no_std", "alloc"]
142142

143143
[dependencies.ockam_vault]
144-
version = "0.135.0"
144+
version = "0.136.0"
145145
path = "../ockam_vault"
146146
default-features = false
147147
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
148148
# breaks building ockam_vault with feature set "no_std,std":
149149
features = ["std", "storage"]
150150

151151
[dependencies.ockam_vault_aws]
152-
version = "0.61.0"
152+
version = "0.62.0"
153153
path = "../ockam_vault_aws"
154154
default-features = false
155155
features = ["std"]
156156

157157
[dependencies.ockam]
158-
version = "^0.156.0"
158+
version = "^0.157.0"
159159
path = "../ockam"
160160
default-features = false
161161
features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"]
162162

163163
[dependencies.ockam_abac]
164-
version = "0.83.0"
164+
version = "0.84.0"
165165
path = "../ockam_abac"
166166
default-features = false
167167

@@ -172,7 +172,7 @@ hyper = { version = "1", default-features = false, features = ["server", "http1"
172172
multimap = "0.10.0"
173173
ockam_macros = { path = "../ockam_macros", features = ["std"], version = "^0.39.0" }
174174
ockam_transport_core = { path = "../ockam_transport_core", version = "^0.104.0" }
175-
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.139.0" }
175+
ockam_transport_tcp = { path = "../ockam_transport_tcp", default-features = false, version = "^0.140.0" }
176176
opentelemetry_sdk = { version = "0.27", features = ["logs", "metrics", "trace", "rt-tokio", "testing"], default-features = false }
177177
quickcheck = "1.0.1"
178178
quickcheck_macros = "1.0.0"

0 commit comments

Comments
 (0)