Skip to content

Commit e448abc

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 13-03-2025
1 parent 0d1412b commit e448abc

File tree

13 files changed

+55
-19
lines changed

13 files changed

+55
-19
lines changed

Cargo.lock

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

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.149.0 - 2025-03-13
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.148.0 - 2025-03-03
814

915
### Added

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.148.0"
3+
version = "0.149.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",

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.148.0"
52+
ockam = "0.149.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.92.0 - 2025-03-13
8+
9+
### Added
10+
11+
- Add command to retrieve the identity listening at some endpoint
12+
- Updated dependencies
13+
14+
### Changed
15+
16+
- Merge `secure-channel peer-info` command into the `show` command
17+
718
## 0.91.0 - 2025-03-03
819

920
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.91.0"
3+
version = "0.92.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -155,7 +155,7 @@ default-features = false
155155
features = ["std"]
156156

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

implementations/rust/ockam/ockam_api/README.md

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

3333
```
3434
[dependencies]
35-
ockam_api = "0.91.0"
35+
ockam_api = "0.92.0"
3636
```
3737

3838
## License

implementations/rust/ockam/ockam_app_lib/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.149.0 - 2025-03-13
8+
9+
### Added
10+
11+
- Add command to retrieve the identity listening at some endpoint
12+
- Updated dependencies
13+
714
## 0.148.0 - 2025-03-03
815

916
### Added

implementations/rust/ockam/ockam_app_lib/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_app_lib"
3-
version = "0.148.0"
3+
version = "0.149.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -37,8 +37,8 @@ rust-crypto = ["ockam_api/rust-crypto"]
3737
duct = "0.13.7"
3838
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
3939
minicbor = { version = "0.25.1", default-features = false, features = ["alloc", "derive"] }
40-
ockam = { path = "../ockam", version = "^0.148.0", features = ["software_vault"] }
41-
ockam_api = { path = "../ockam_api", version = "0.91.0", default-features = false, features = ["std"] }
40+
ockam = { path = "../ockam", version = "^0.149.0", features = ["software_vault"] }
41+
ockam_api = { path = "../ockam_api", version = "0.92.0", default-features = false, features = ["std"] }
4242
ockam_core = { path = "../ockam_core", version = "^0.125.0" }
4343
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.70.0", features = ["cbor", "serde"] }
4444
ockam_node = { path = "../ockam_node", version = "^0.138.0" }
@@ -50,7 +50,7 @@ tokio = { version = "1.41.0", features = ["full"] }
5050
tracing = { version = "0.1", default-features = false }
5151

5252
[dev-dependencies]
53-
ockam_api = { path = "../ockam_api", version = "0.91.0", default-features = false, features = ["test-utils"] }
53+
ockam_api = { path = "../ockam_api", version = "0.92.0", default-features = false, features = ["test-utils"] }
5454
tempfile = { version = "3.17.1" }
5555

5656
[build-dependencies]

implementations/rust/ockam/ockam_app_lib/README.md

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

2222
```
2323
[dependencies]
24-
ockam_app_lib = "0.148.0"
24+
ockam_app_lib = "0.149.0"
2525
```
2626

2727
## License

0 commit comments

Comments
 (0)