Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: release-plz-ipvm-wg[bot] <144082651+release-plz-ipvm-wg[bot]@users.noreply.github.com>
  • Loading branch information
release-plz-ipvm-wg[bot] committed Feb 7, 2024
1 parent 1838452 commit f71b41f
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 12 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.

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

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

## [Unreleased]

## [0.2.0](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.1.1...homestar-invocation-v0.2.0) - 2024-02-07

### Other
- move away from deadlines dealing w/ the runner and wasi-preview 2 wasmtime ([#560](https://github.com/ipvm-wg/homestar/pull/560))
- remove unnecessary deps and add tooling for those checks ([#541](https://github.com/ipvm-wg/homestar/pull/541))
- release docs and cp readmes ([#530](https://github.com/ipvm-wg/homestar/pull/530))

## [0.1.1](https://github.com/ipvm-wg/homestar/compare/homestar-invocation-v0.1.0...homestar-invocation-v0.1.1) - 2024-01-20

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

## [Unreleased]

## [0.2.0](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.1.1...homestar-runtime-v0.2.0) - 2024-02-07

### Added
- redial `node_addresses` at an interval on connection close ([#529](https://github.com/ipvm-wg/homestar/pull/529))

### Fixed
- add handling of dns multiaddrs + bootstrapping + CLI / Conn changes ([#547](https://github.com/ipvm-wg/homestar/pull/547))

### Other
- small comment, sorry ([#561](https://github.com/ipvm-wg/homestar/pull/561))
- move away from deadlines dealing w/ the runner and wasi-preview 2 wasmtime ([#560](https://github.com/ipvm-wg/homestar/pull/560))
- docker updates with info command and rpc host update ([#558](https://github.com/ipvm-wg/homestar/pull/558))
- just test conn ([#544](https://github.com/ipvm-wg/homestar/pull/544))
- handle this evil workflow_info test ([#543](https://github.com/ipvm-wg/homestar/pull/543))
- remove unnecessary deps and add tooling for those checks ([#541](https://github.com/ipvm-wg/homestar/pull/541))
- [chore(cargo)](deps): bump puffin from 0.18.1 to 0.19.0 ([#537](https://github.com/ipvm-wg/homestar/pull/537))
- updates/flaky kills on ci ([#540](https://github.com/ipvm-wg/homestar/pull/540))
- release docs and cp readmes ([#530](https://github.com/ipvm-wg/homestar/pull/530))
- port selection and test config generation macro ([#528](https://github.com/ipvm-wg/homestar/pull/528))
- [chore(cargo)](deps): bump serde_with from 3.4.0 to 3.5.0 ([#524](https://github.com/ipvm-wg/homestar/pull/524))
- [chore(cargo)](deps): bump moka from 0.12.3 to 0.12.4 ([#525](https://github.com/ipvm-wg/homestar/pull/525))

## [0.1.1](https://github.com/ipvm-wg/homestar/compare/homestar-runtime-v0.1.0...homestar-runtime-v0.1.1) - 2024-01-20

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions homestar-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,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.1", path = "../homestar-invocation", features = [
homestar-invocation = { version = "0.2", path = "../homestar-invocation", features = [
"diesel",
] }
homestar-wasm = { version = "0.1", path = "../homestar-wasm", default-features = false }
homestar-workflow = { version = "0.1", path = "../homestar-workflow" }
homestar-wasm = { version = "0.2", path = "../homestar-wasm", default-features = false }
homestar-workflow = { version = "0.2", path = "../homestar-workflow" }
homestar-workspace-hack = { workspace = true }
http = "0.2"
http-serde = "1.1"
Expand Down Expand Up @@ -202,7 +202,7 @@ vergen = { version = "8.3", default-features = false, features = [
assert_cmd = "2.0"
criterion = "0.5"
flaky_test = "0.2"
homestar-invocation = { version = "0.1", path = "../homestar-invocation", features = [
homestar-invocation = { version = "0.2", path = "../homestar-invocation", features = [
"diesel",
"test-utils",
] }
Expand Down
7 changes: 7 additions & 0 deletions homestar-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.1.1...homestar-wasm-v0.2.0) - 2024-02-07

### Other
- move away from deadlines dealing w/ the runner and wasi-preview 2 wasmtime ([#560](https://github.com/ipvm-wg/homestar/pull/560))
- remove unnecessary deps and add tooling for those checks ([#541](https://github.com/ipvm-wg/homestar/pull/541))
- release docs and cp readmes ([#530](https://github.com/ipvm-wg/homestar/pull/530))

## [0.1.1](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.1.0...homestar-wasm-v0.1.1) - 2024-01-20

### Fixed
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.1", path = "../homestar-invocation" }
homestar-invocation = { version = "0.2", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
itertools = { workspace = true }
libipld = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions homestar-workflow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/ipvm-wg/homestar/compare/homestar-workflow-v0.1.1...homestar-workflow-v0.2.0) - 2024-02-07

### Other
- remove unnecessary deps and add tooling for those checks ([#541](https://github.com/ipvm-wg/homestar/pull/541))
- release docs and cp readmes ([#530](https://github.com/ipvm-wg/homestar/pull/530))

## [0.1.1](https://github.com/ipvm-wg/homestar/compare/homestar-workflow-v0.1.0...homestar-workflow-v0.1.1) - 2024-01-20

### Fixed
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,15 +19,15 @@ doctest = true

[dependencies]
fxhash = { version = "0.2", default-features = false }
homestar-invocation = { version = "0.1", path = "../homestar-invocation" }
homestar-invocation = { version = "0.2", path = "../homestar-invocation" }
homestar-workspace-hack = { workspace = true }
indexmap = { version = "2.1", default-features = false }
libipld = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }

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

0 comments on commit f71b41f

Please sign in to comment.