Skip to content

Commit

Permalink
ci: crate release 21-10-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team authored and metaclips committed Oct 21, 2024
1 parent 191ff03 commit e92fe32
Show file tree
Hide file tree
Showing 13 changed files with 53 additions and 19 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.137.0 - 2024-10-21

### Added

- Improvements to commands outputs
- Updated dependencies

## 0.136.0 - 2024-10-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam"
version = "0.136.0"
version = "0.137.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam = "0.136.0"
ockam = "0.137.0"
```

## License
Expand Down
9 changes: 9 additions & 0 deletions implementations/rust/ockam/ockam_api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.80.0 - 2024-10-21

### Added

- Change behavior of how nodes' processes are stopped
- Improvements to commands outputs
- Return enrollment ticket hex-encoded
- Updated dependencies

## 0.79.0 - 2024-10-16

### Added
Expand Down
4 changes: 2 additions & 2 deletions implementations/rust/ockam/ockam_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_api"
version = "0.79.0"
version = "0.80.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -143,7 +143,7 @@ default-features = false
features = ["std"]

[dependencies.ockam]
version = "^0.136.0"
version = "^0.137.0"
path = "../ockam"
default-features = false
features = ["std", "ockam_transport_tcp", "ockam_transport_udp", "storage"]
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_api = "0.79.0"
ockam_api = "0.80.0"
```

## License
Expand Down
8 changes: 8 additions & 0 deletions implementations/rust/ockam/ockam_app_lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.137.0 - 2024-10-21

### Added

- Change behavior of how nodes' processes are stopped
- Improvements to commands outputs
- Updated dependencies

## 0.136.0 - 2024-10-16

### Added
Expand Down
8 changes: 4 additions & 4 deletions implementations/rust/ockam/ockam_app_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_app_lib"
version = "0.136.0"
version = "0.137.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -37,8 +37,8 @@ rust-crypto = ["ockam_api/rust-crypto"]
duct = "0.13.7"
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
minicbor = { version = "0.24.1", features = ["alloc", "derive"] }
ockam = { path = "../ockam", version = "^0.136.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["std"] }
ockam = { path = "../ockam", version = "^0.137.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.118.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["cbor", "serde"] }
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -50,7 +50,7 @@ tracing = { version = "0.1", default-features = false }
tracing-core = { version = "0.1.32", default-features = false }

[dev-dependencies]
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["test-utils"] }
ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["test-utils"] }
tempfile = { version = "3.10.1" }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_app_lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_app_lib = "0.136.0"
ockam_app_lib = "0.137.0"
```

## License
Expand Down
10 changes: 10 additions & 0 deletions implementations/rust/ockam/ockam_command/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.137.0 - 2024-10-21

### Added

- Change behavior of how nodes' processes are stopped
- Improvements to commands outputs
- Add retry to the command's upgrade github request
- Return enrollment ticket hex-encoded
- Updated dependencies

## 0.136.0 - 2024-10-16

### Added
Expand Down
8 changes: 4 additions & 4 deletions implementations/rust/ockam/ockam_command/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ockam_command"
version = "0.136.0"
version = "0.137.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -70,9 +70,9 @@ indicatif = "0.17.8"
indoc = "2.0.5"
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
minicbor = { version = "0.24.1", features = ["derive", "alloc", "half"] }
ockam = { path = "../ockam", version = "^0.136.0", features = ["software_vault"] }
ockam = { path = "../ockam", version = "^0.137.0", features = ["software_vault"] }
ockam_abac = { path = "../ockam_abac", version = "0.69.0", features = ["std"] }
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["std"] }
ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.118.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.62.0", features = ["std"] }
ockam_node = { path = "../ockam_node", version = "^0.128.0" }
Expand Down Expand Up @@ -109,7 +109,7 @@ which = "6.0.2"
[dev-dependencies]
assert_cmd = "2"
mockito = "1.5.0"
ockam_api = { path = "../ockam_api", version = "0.79.0", default-features = false, features = ["test-utils"] }
ockam_api = { path = "../ockam_api", version = "0.80.0", default-features = false, features = ["test-utils"] }
ockam_macros = { path = "../ockam_macros", version = "^0.35.0" }
proptest = "1.5.0"
tempfile = "3.10.1"
Expand Down
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_command/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam_command = "0.136.0"
ockam_command = "0.137.0"
```
## License
Expand Down

0 comments on commit e92fe32

Please sign in to comment.