Skip to content

Commit e67080e

Browse files
chore: release
1 parent 0f0a4f5 commit e67080e

File tree

9 files changed

+35
-16
lines changed

9 files changed

+35
-16
lines changed

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ edition = "2021"
2424
license = "Apache-2.0"
2525
repository = "https://github.com/ipvm-wg/homestar"
2626
rust-version = "1.75.0"
27-
version = "0.3.0"
27+
version = "0.4.0"
2828

2929
[workspace.dependencies]
3030
anyhow = { version = "1.0", features = ["backtrace"] }

homestar-invocation/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.3.0...homestar-invocation-v0.4.0) - 2024-06-26
10+
11+
### Other
12+
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))
13+
914
## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.2.0...homestar-invocation-v0.3.0) - 2024-03-13
1015

1116
### Added

homestar-runtime/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.3.0...homestar-runtime-v0.4.0) - 2024-06-26
10+
11+
### Added
12+
- Add AutoNAT behavior ([#632](https://github.com/ipvm-wg/homestar/pull/632))
13+
14+
### Other
15+
- *(schemas)* update OpenRPC API doc and JSON schemas
16+
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))
17+
918
## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.2.0...homestar-runtime-v0.3.0) - 2024-03-13
1019

1120
### Added

homestar-runtime/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ flume = { version = "0.11", default-features = false, features = ["async"] }
7474
fnv = { version = "1.0", default-features = false }
7575
futures = { workspace = true }
7676
hickory-resolver = { version = "0.24", default-features = false }
77-
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
77+
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
7878
"diesel",
7979
] }
80-
homestar-wasm = { version = "0.3", path = "../homestar-wasm", default-features = false }
81-
homestar-workflow = { version = "0.3", path = "../homestar-workflow" }
80+
homestar-wasm = { version = "0.4", path = "../homestar-wasm", default-features = false }
81+
homestar-workflow = { version = "0.4", path = "../homestar-workflow" }
8282
homestar-workspace-hack = { workspace = true }
8383
http = "0.2"
8484
http-serde = "1.1"
@@ -209,7 +209,7 @@ vergen = { version = "8.3", default-features = false, features = [
209209
[dev-dependencies]
210210
assert_cmd = "2.0"
211211
criterion = "0.5"
212-
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
212+
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
213213
"diesel",
214214
"test-utils",
215215
] }

homestar-schemas/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = { workspace = true }
66
rust-version = { workspace = true }
77

88
[dependencies]
9-
homestar-invocation = { version = "0.3", path = "../homestar-invocation", default-features = false }
10-
homestar-runtime = { version = "0.3", path = "../homestar-runtime", default-features = false, features = [
9+
homestar-invocation = { version = "0.4", path = "../homestar-invocation", default-features = false }
10+
homestar-runtime = { version = "0.4", path = "../homestar-runtime", default-features = false, features = [
1111
"websocket-notify",
1212
] }
13-
homestar-workflow = { version = "0.3", path = "../homestar-workflow", default-features = false }
13+
homestar-workflow = { version = "0.4", path = "../homestar-workflow", default-features = false }
1414
homestar-workspace-hack = { workspace = true }
1515
schemars = { workspace = true }
1616
serde = { workspace = true }

homestar-wasm/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.3.0...homestar-wasm-v0.4.0) - 2024-06-26
10+
11+
### Other
12+
- wasm/warg namespace cleanup ([#630](https://github.com/ipvm-wg/homestar/pull/630))
13+
914
## [0.3.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.2.0...homestar-wasm-v0.3.0) - 2024-03-13
1015

1116
### Added

homestar-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async-trait = { workspace = true }
2525
atomic_refcell = { workspace = true }
2626
enum-as-inner = { workspace = true }
2727
heck = "0.4"
28-
homestar-invocation = { version = "0.3", path = "../homestar-invocation" }
28+
homestar-invocation = { version = "0.4", path = "../homestar-invocation" }
2929
homestar-workspace-hack = { workspace = true }
3030
indexmap = { workspace = true }
3131
itertools = { workspace = true }

homestar-workflow/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = true
1919

2020
[dependencies]
2121
fxhash = { version = "0.2", default-features = false }
22-
homestar-invocation = { version = "0.3", path = "../homestar-invocation" }
22+
homestar-invocation = { version = "0.4", path = "../homestar-invocation" }
2323
homestar-workspace-hack = { workspace = true }
2424
indexmap = { workspace = true }
2525
libipld = { workspace = true }
@@ -28,7 +28,7 @@ serde = { workspace = true }
2828
thiserror = { workspace = true }
2929

3030
[dev-dependencies]
31-
homestar-invocation = { version = "0.3", path = "../homestar-invocation", features = [
31+
homestar-invocation = { version = "0.4", path = "../homestar-invocation", features = [
3232
"test-utils",
3333
] }
3434
json = "0.12"

0 commit comments

Comments
 (0)