Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
release-plz-ipvm-wg[bot] committed May 17, 2024
1 parent 69525a8 commit cfd66b0
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ipvm-wg/homestar"
rust-version = "1.75.0"
version = "0.3.0"
version = "0.4.0"

[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
Expand Down
5 changes: 5 additions & 0 deletions homestar-invocation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.3.0...homestar-invocation-v0.4.0) - 2024-05-17

### Other
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))

## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.2.0...homestar-invocation-v0.3.0) - 2024-03-13

### Added
Expand Down
9 changes: 9 additions & 0 deletions homestar-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.3.0...homestar-runtime-v0.4.0) - 2024-05-17

### Added
- Add AutoNAT behavior ([#632](https://github.com/ipvm-wg/homestar/pull/632))

### Other
- *(schemas)* update OpenRPC API doc and JSON schemas
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))

## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.2.0...homestar-runtime-v0.3.0) - 2024-03-13

### Added
Expand Down
8 changes: 4 additions & 4 deletions homestar-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ flume = { version = "0.11", default-features = false, features = ["async"] }
fnv = { version = "1.0", default-features = false }
futures = { workspace = true }
hickory-resolver = { version = "0.24", default-features = false }
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
"diesel",
] }
homestar-wasm = { version = "0.3", path = "../homestar-wasm", default-features = false }
homestar-workflow = { version = "0.3", path = "../homestar-workflow" }
homestar-wasm = { version = "0.4", path = "../homestar-wasm", default-features = false }
homestar-workflow = { version = "0.4", path = "../homestar-workflow" }
homestar-workspace-hack = { workspace = true }
http = "0.2"
http-serde = "1.1"
Expand Down Expand Up @@ -209,7 +209,7 @@ vergen = { version = "8.3", default-features = false, features = [
[dev-dependencies]
assert_cmd = "2.0"
criterion = "0.5"
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
"diesel",
"test-utils",
] }
Expand Down
6 changes: 3 additions & 3 deletions homestar-schemas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = { workspace = true }
rust-version = { workspace = true }

[dependencies]
homestar-invocation = { version = "0.3", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.3", path = "../homestar-runtime", default-features = false, features = [
homestar-invocation = { version = "0.4", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.4", path = "../homestar-runtime", default-features = false, features = [
"websocket-notify",
] }
homestar-workflow = { version = "0.3", path = "../homestar-workflow", default-features = false }
homestar-workflow = { version = "0.4", path = "../homestar-workflow", default-features = false }
homestar-workspace-hack = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions homestar-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.3.0...homestar-wasm-v0.4.0) - 2024-05-17

### Other
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))

## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.2.0...homestar-wasm-v0.3.0) - 2024-03-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion homestar-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async-trait = { workspace = true }
atomic_refcell = { workspace = true }
enum-as-inner = { workspace = true }
heck = "0.4"
homestar-invocation = { version = "0.3", path = "../homestar-invocation" }
homestar-invocation = { version = "0.4", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
indexmap = { workspace = true }
itertools = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions homestar-workflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ doctest = true

[dependencies]
fxhash = { version = "0.2", default-features = false }
homestar-invocation = { version = "0.3", path = "../homestar-invocation" }
homestar-invocation = { version = "0.4", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
indexmap = { workspace = true }
libipld = { workspace = true }
Expand All @@ -28,7 +28,7 @@ serde = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
"test-utils",
] }
json = "0.12"
Expand Down

0 comments on commit cfd66b0

Please sign in to comment.