Skip to content

Commit 4136bc4

Browse files
ockam-teammetaclips
authored andcommitted
ci: crate release 30-04-2024
1 parent ae778bc commit 4136bc4

File tree

55 files changed

+246
-120
lines changed

Some content is hidden

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

55 files changed

+246
-120
lines changed

Cargo.lock

Lines changed: 18 additions & 18 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: 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.123.0 - 2024-04-30
8+
9+
### Added
10+
11+
- Improve output of `node create` command
12+
- Updated dependencies
13+
714
## 0.122.0 - 2024-04-23
815

916
### 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.122.0"
3+
version = "0.123.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -88,20 +88,20 @@ arrayref = "0.3"
8888
dyn-clone = "1.0"
8989
hex = { version = "0.4", default-features = false }
9090
minicbor = { version = "0.24.0", features = ["alloc", "derive"] }
91-
ockam_abac = { path = "../ockam_abac", version = "^0.55.0", default_features = false, optional = true }
92-
ockam_core = { path = "../ockam_core", version = "^0.107.0", default-features = false }
93-
ockam_identity = { path = "../ockam_identity", version = "^0.109.0", default_features = false }
91+
ockam_abac = { path = "../ockam_abac", version = "^0.56.0", default_features = false, optional = true }
92+
ockam_core = { path = "../ockam_core", version = "^0.108.0", default-features = false }
93+
ockam_identity = { path = "../ockam_identity", version = "^0.110.0", default_features = false }
9494
ockam_macros = { path = "../ockam_macros", version = "^0.34.0", default_features = false }
95-
ockam_node = { path = "../ockam_node", version = "^0.114.0", default-features = false }
96-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.112.0", default-features = false, optional = true }
97-
ockam_vault = { path = "../ockam_vault", version = "^0.107.0", default_features = false, optional = true }
95+
ockam_node = { path = "../ockam_node", version = "^0.115.0", default-features = false }
96+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.113.0", default-features = false, optional = true }
97+
ockam_vault = { path = "../ockam_vault", version = "^0.108.0", default_features = false, optional = true }
9898
rand = { version = "0.8", default-features = false }
9999
serde = { version = "1.0", default-features = false, features = ["derive"] }
100100
sha2 = { version = "0.10", default-features = false }
101101
tracing = { version = "0.1", default-features = false }
102102

103103
[dev-dependencies]
104-
ockam_vault = { path = "../ockam_vault", version = "^0.107.0" }
104+
ockam_vault = { path = "../ockam_vault", version = "^0.108.0" }
105105
rand_xorshift = "0.3"
106106
serde_json = "1.0"
107107
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.122.0"
52+
ockam = "0.123.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.56.0 - 2024-04-30
8+
9+
### Added
10+
11+
- Updated dependencies
12+
713
## 0.55.0 - 2024-04-23
814

915
### Added

implementations/rust/ockam/ockam_abac/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -37,15 +37,15 @@ std = [
3737
cfg-if = "1.0.0"
3838
either = { version = "1.11.0", default-features = false }
3939
minicbor = { version = "0.24.0", features = ["derive", "alloc"] }
40-
ockam_core = { version = "0.107.0", path = "../ockam_core", default-features = false }
41-
ockam_identity = { version = "0.109.0", path = "../ockam_identity", default-features = false }
42-
ockam_node = { version = "0.114.0", path = "../ockam_node", default-features = false }
40+
ockam_core = { version = "0.108.0", path = "../ockam_core", default-features = false }
41+
ockam_identity = { version = "0.110.0", path = "../ockam_identity", default-features = false }
42+
ockam_node = { version = "0.115.0", path = "../ockam_node", default-features = false }
4343
once_cell = { version = "1.19.0", default-features = false, features = ["alloc"] }
4444
serde = { version = "1", default-features = false, features = ["derive"] }
4545
strum = { version = "0.26.2", default-features = false, features = ["derive"] }
4646

4747
# optional:
48-
ockam_executor = { version = "0.76.0", path = "../ockam_executor", default-features = false, optional = true }
48+
ockam_executor = { version = "0.77.0", path = "../ockam_executor", default-features = false, optional = true }
4949
regex = { version = "1.10.4", default-features = false, optional = true }
5050
rusqlite = { version = "0.30.0", optional = true }
5151
rustyline = { version = "14.0.0", optional = true }

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.55.0"
20+
ockam_abac = "0.56.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.66.0 - 2024-04-30
8+
9+
### Added
10+
11+
- Improve output of `node show` command
12+
- If logging is enabled, command output will be redirected to the logs
13+
- Improve output of `node create` command
14+
- Updated dependencies
15+
716
## 0.65.0 - 2024-04-23
817

918
### Added

implementations/rust/ockam/ockam_api/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.65.0"
3+
version = "0.66.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -87,44 +87,44 @@ tracing-opentelemetry = "0.23.0"
8787
tracing-subscriber = { version = "0.3.18", features = ["json"] }
8888
url = "2.4.1"
8989

90-
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.51.0", features = ["cbor", "serde"] }
91-
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.112.0", default-features = false, features = ["std"] }
90+
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.52.0", features = ["cbor", "serde"] }
91+
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.113.0", default-features = false, features = ["std"] }
9292
tonic = "0.11"
9393

9494
[dependencies.ockam_core]
95-
version = "0.107.0"
95+
version = "0.108.0"
9696
path = "../ockam_core"
9797
default-features = false
9898
features = ["no_std", "alloc"]
9999

100100
[dependencies.ockam_node]
101-
version = "0.114.0"
101+
version = "0.115.0"
102102
path = "../ockam_node"
103103
default-features = false
104104
features = ["no_std", "alloc"]
105105

106106
[dependencies.ockam_vault]
107-
version = "0.107.0"
107+
version = "0.108.0"
108108
path = "../ockam_vault"
109109
default-features = false
110110
# FIXME: ockam_vault's dependency curve25519-dalek has non-additive features which
111111
# breaks building ockam_vault with feature set "no_std,std":
112112
features = ["std", "storage"]
113113

114114
[dependencies.ockam_vault_aws]
115-
version = "0.33.0"
115+
version = "0.34.0"
116116
path = "../ockam_vault_aws"
117117
default-features = false
118118
features = ["std"]
119119

120120
[dependencies.ockam]
121-
version = "^0.122.0"
121+
version = "^0.123.0"
122122
path = "../ockam"
123123
default-features = false
124124
features = ["ockam_transport_tcp", "storage"]
125125

126126
[dependencies.ockam_abac]
127-
version = "0.55.0"
127+
version = "0.56.0"
128128
path = "../ockam_abac"
129129
default-features = false
130130

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.65.0"
35+
ockam_api = "0.66.0"
3636
```
3737

3838
## License

0 commit comments

Comments
 (0)