Skip to content

Commit

Permalink
ci: crate release 30-11-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team authored and metaclips committed Nov 30, 2024
1 parent f2d0c84 commit 31f3f2b
Show file tree
Hide file tree
Showing 13 changed files with 44 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.

6 changes: 6 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.143.0 - 2024-11-30

### Added

- Updated dependencies

## 0.142.0 - 2024-11-27

### 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.142.0"
version = "0.143.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.142.0"
ockam = "0.143.0"
```

## License
Expand Down
7 changes: 7 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,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.86.0 - 2024-11-30

### Added

- Reduce the api versions to the supported range
- Updated dependencies

## 0.85.0 - 2024-11-27

### 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.85.0"
version = "0.86.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -146,7 +146,7 @@ default-features = false
features = ["std"]

[dependencies.ockam]
version = "^0.142.0"
version = "^0.143.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.85.0"
ockam_api = "0.86.0"
```

## License
Expand Down
6 changes: 6 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,12 @@ 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.143.0 - 2024-11-30

### Added

- Updated dependencies

## 0.142.0 - 2024-11-27

### 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.142.0"
version = "0.143.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.25.1", default-features = false, features = ["alloc", "derive"] }
ockam = { path = "../ockam", version = "^0.142.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.85.0", default-features = false, features = ["std"] }
ockam = { path = "../ockam", version = "^0.143.0", features = ["software_vault"] }
ockam_api = { path = "../ockam_api", version = "0.86.0", default-features = false, features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.121.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.65.0", features = ["cbor", "serde"] }
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -49,7 +49,7 @@ tokio = { version = "1.41.0", features = ["full"] }
tracing = { version = "0.1", default-features = false }

[dev-dependencies]
ockam_api = { path = "../ockam_api", version = "0.85.0", default-features = false, features = ["test-utils"] }
ockam_api = { path = "../ockam_api", version = "0.86.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.142.0"
ockam_app_lib = "0.143.0"
```

## License
Expand Down
6 changes: 6 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,12 @@ 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.143.0 - 2024-11-30

### Added

- Updated dependencies

## 0.142.0 - 2024-11-27

### 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.142.0"
version = "0.143.0"
authors = ["Ockam Developers"]
categories = [
"cryptography",
Expand Down Expand Up @@ -65,9 +65,9 @@ indoc = "2.0.5"
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
minicbor = { version = "0.25.1", default-features = false, features = ["alloc", "derive"] }
nix = { version = "0.29", features = ["signal"] }
ockam = { path = "../ockam", version = "^0.142.0", features = ["software_vault"] }
ockam = { path = "../ockam", version = "^0.143.0", features = ["software_vault"] }
ockam_abac = { path = "../ockam_abac", version = "0.74.0", features = ["std"] }
ockam_api = { path = "../ockam_api", version = "0.85.0", default-features = false, features = ["std"] }
ockam_api = { path = "../ockam_api", version = "0.86.0", default-features = false, features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.121.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.65.0", features = ["std"] }
ockam_node = { path = "../ockam_node", version = "^0.133.0" }
Expand Down Expand Up @@ -100,7 +100,7 @@ which = "6.0.2"
[dev-dependencies]
assert_cmd = "2"
mockito = "1.5.0"
ockam_api = { path = "../ockam_api", version = "0.85.0", default-features = false, features = ["test-utils"] }
ockam_api = { path = "../ockam_api", version = "0.86.0", default-features = false, features = ["test-utils"] }
ockam_macros = { path = "../ockam_macros", version = "^0.36.0" }
proptest = "1.5.0"
serial_test = "3.0.0"
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.142.0"
ockam_command = "0.143.0"
```
## License
Expand Down

0 comments on commit 31f3f2b

Please sign in to comment.