Skip to content

Commit ff6ef7d

Browse files
committed
ci: crate release 23-11-2023
1 parent bd0ec62 commit ff6ef7d

File tree

25 files changed

+93
-36
lines changed

25 files changed

+93
-36
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam/CHANGELOG.md

+7
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.105.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Use `Identifier` as a return type in public api
12+
- Updated dependencies
13+
714
## 0.104.0 - 2023-11-17
815

916
### Changed

implementations/rust/ockam/ockam/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam"
3-
version = "0.104.0"
3+
version = "0.105.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -85,9 +85,9 @@ arrayref = "0.3"
8585
dyn-clone = "1.0"
8686
hex = { version = "0.4", default-features = false }
8787
minicbor = { version = "0.20.0", features = ["alloc", "derive"] }
88-
ockam_abac = { path = "../ockam_abac", version = "^0.38.0", default_features = false, optional = true }
88+
ockam_abac = { path = "../ockam_abac", version = "^0.39.0", default_features = false, optional = true }
8989
ockam_core = { path = "../ockam_core", version = "^0.93.0", default-features = false }
90-
ockam_identity = { path = "../ockam_identity", version = "^0.92.0", default_features = false }
90+
ockam_identity = { path = "../ockam_identity", version = "^0.93.0", default_features = false }
9191
ockam_macros = { path = "../ockam_macros", version = "^0.32.0", default_features = false }
9292
ockam_node = { path = "../ockam_node", version = "^0.98.0", default-features = false }
9393
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0", optional = true }

implementations/rust/ockam/ockam/README.md

+1-1
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.104.0"
52+
ockam = "0.105.0"
5353
```
5454

5555
## License

implementations/rust/ockam/ockam_abac/CHANGELOG.md

+6
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.39.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Updated dependencies
12+
713
## 0.38.0 - 2023-11-17
814

915
### Changed

implementations/rust/ockam/ockam_abac/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_abac"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authorization"]
66
edition = "2021"
@@ -38,7 +38,7 @@ lmdb-rkv = { version = "0.14.0", optional = true }
3838
minicbor = { version = "0.20.0", features = ["derive", "alloc"] }
3939
ockam_core = { version = "0.93.0", path = "../ockam_core", default-features = false }
4040
ockam_executor = { version = "0.61.0", path = "../ockam_executor", default-features = false }
41-
ockam_identity = { version = "0.92.0", path = "../ockam_identity", default-features = false }
41+
ockam_identity = { version = "0.93.0", path = "../ockam_identity", default-features = false }
4242
once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }
4343
# optional:
4444
regex = { version = "1.10.2", default-features = false, optional = true }

implementations/rust/ockam/ockam_abac/README.md

+1-1
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.38.0"
20+
ockam_abac = "0.39.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_api/CHANGELOG.md

+7
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.48.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Use `Identifier` as a return type in public api
12+
- Updated dependencies
13+
714
## 0.47.0 - 2023-11-17
815

916
### Changed

implementations/rust/ockam/ockam_api/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_api"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
authors = ["Ockam Developers"]
55
edition = "2021"
66
homepage = "https://github.com/ockam-network/ockam"
@@ -87,13 +87,13 @@ default-features = false
8787
features = ["std"]
8888

8989
[dependencies.ockam]
90-
version = "^0.104.0"
90+
version = "^0.105.0"
9191
path = "../ockam"
9292
default-features = false
9393
features = ["ockam_transport_tcp", "software_vault_storage"]
9494

9595
[dependencies.ockam_abac]
96-
version = "0.38.0"
96+
version = "0.39.0"
9797
path = "../ockam_abac"
9898
default-features = false
9999

implementations/rust/ockam/ockam_api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Add this to your `Cargo.toml`:
140140

141141
```
142142
[dependencies]
143-
ockam_api = "0.47.0"
143+
ockam_api = "0.48.0"
144144
```
145145

146146
## License

implementations/rust/ockam/ockam_app_lib/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.9.0 - 2023-11-23
8+
9+
### Added
10+
11+
- Added persistent state for incoming services in the app
12+
13+
### Changed
14+
15+
- Updated dependencies
16+
717
## 0.8.0 - 2023-11-17
818

919
### Added

implementations/rust/ockam/ockam_app_lib/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_app_lib"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -33,8 +33,8 @@ futures = { version = "0.3.28", default-features = false }
3333
hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] }
3434
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
3535
minicbor = { version = "0.20.0", features = ["alloc", "derive"] }
36-
ockam = { path = "../ockam", version = "^0.104.0", features = ["software_vault"] }
37-
ockam_api = { path = "../ockam_api", version = "0.47.0", features = ["std"] }
36+
ockam = { path = "../ockam", version = "^0.105.0", features = ["software_vault"] }
37+
ockam_api = { path = "../ockam_api", version = "0.48.0", features = ["std"] }
3838
ockam_core = { path = "../ockam_core", version = "^0.93.0" }
3939
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["cbor", "serde"] }
4040
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.96.0" }

implementations/rust/ockam/ockam_app_lib/README.md

+1-1
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.8.0"
24+
ockam_app_lib = "0.9.0"
2525
```
2626

2727
## License

implementations/rust/ockam/ockam_command/CHANGELOG.md

+7
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.105.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Use `Identifier` as a return type in public api
12+
- Updated dependencies
13+
714
## 0.104.0 - 2023-11-17
815

916
### Changed

implementations/rust/ockam/ockam_command/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_command"
3-
version = "0.104.0"
3+
version = "0.105.0"
44
authors = ["Ockam Developers"]
55
categories = [
66
"cryptography",
@@ -77,9 +77,9 @@ itertools = "0.11"
7777
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
7878
minicbor = { version = "0.20.0", features = ["derive", "alloc", "half"] }
7979
nix = "0.27"
80-
ockam = { path = "../ockam", version = "^0.104.0", features = ["software_vault"] }
81-
ockam_abac = { path = "../ockam_abac", version = "0.38.0", features = ["std"] }
82-
ockam_api = { path = "../ockam_api", version = "0.47.0", features = ["std"] }
80+
ockam = { path = "../ockam", version = "^0.105.0", features = ["software_vault"] }
81+
ockam_abac = { path = "../ockam_abac", version = "0.39.0", features = ["std"] }
82+
ockam_api = { path = "../ockam_api", version = "0.48.0", features = ["std"] }
8383
ockam_core = { path = "../ockam_core", version = "^0.93.0" }
8484
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.37.0", features = ["std"] }
8585
ockam_node = { path = "../ockam_node", version = "^0.98.0" }

implementations/rust/ockam/ockam_command/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:
3333

3434
```
3535
[dependencies]
36-
ockam_command = "0.104.0"
36+
ockam_command = "0.105.0"
3737
```
3838
3939
## License

implementations/rust/ockam/ockam_identity/CHANGELOG.md

+7
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.93.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Use `Identifier` as a return type in public api
12+
- Updated dependencies
13+
714
## 0.92.0 - 2023-11-17
815

916
### Changed

implementations/rust/ockam/ockam_identity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_identity"
3-
version = "0.92.0"
3+
version = "0.93.0"
44
authors = ["Ockam Developers"]
55
categories = ["cryptography", "authentication"]
66
edition = "2021"

implementations/rust/ockam/ockam_identity/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add this to your `Cargo.toml`:
3131

3232
```
3333
[dependencies]
34-
ockam_identity = "0.92.0"
34+
ockam_identity = "0.93.0"
3535
```
3636

3737
## License

implementations/rust/ockam/ockam_transport_ble/CHANGELOG.md

+7
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.60.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Use `Identifier` as a return type in public api
12+
- Updated dependencies
13+
714
## 0.59.0 - 2023-11-17
815

916
### Changed

implementations/rust/ockam/ockam_transport_ble/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_transport_ble"
3-
version = "0.59.0"
3+
version = "0.60.0"
44
authors = ["Ockam Developers"]
55
autoexamples = false
66
categories = ["cryptography", "asynchronous", "authentication", "embedded", "network-programming"]
@@ -124,7 +124,7 @@ cortex-m = "0.7.7"
124124
riscv = "0.10.0"
125125

126126
[dev-dependencies]
127-
ockam_identity = { path = "../ockam_identity", version = "^0.92.0" }
127+
ockam_identity = { path = "../ockam_identity", version = "^0.93.0" }
128128
ockam_vault = { path = "../ockam_vault", version = "^0.91.0" }
129129

130130
[[example]]

implementations/rust/ockam/ockam_transport_ble/README.md

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

1818
```
1919
[dependencies]
20-
ockam_transport_ble = "0.59.0"
20+
ockam_transport_ble = "0.60.0"
2121
```
2222

2323
## License

implementations/rust/ockam/ockam_transport_udp/CHANGELOG.md

+6
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.39.0 - 2023-11-23
8+
9+
### Changed
10+
11+
- Updated dependencies
12+
713
## 0.38.0 - 2023-11-17
814

915
### Changed

implementations/rust/ockam/ockam_transport_udp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_transport_udp"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
authors = ["Ockam Developers"]
55
autoexamples = false
66
categories = [
@@ -42,7 +42,7 @@ tokio-util = { version = "0.7.9", features = ["net", "codec"] }
4242
tracing = { version = "0.1", default-features = false }
4343

4444
[dev-dependencies]
45-
ockam = { path = "../ockam", version = "^0.104.0" }
45+
ockam = { path = "../ockam", version = "^0.105.0" }
4646
ockam_macros = { path = "../ockam_macros", version = "^0.32.0" }
4747

4848
[[example]]

implementations/rust/ockam/ockam_transport_udp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:
1818

1919
```
2020
[dependencies]
21-
ockam_transport_udp = "0.38.0"
21+
ockam_transport_udp = "0.39.0"
2222
```
2323

2424
## License

0 commit comments

Comments
 (0)