Skip to content

Commit

Permalink
chore: release (#527)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `homestar-runtime`: 0.1.1 -> 0.2.0 (⚠️ API breaking changes)
* `homestar-invocation`: 0.1.1 -> 0.2.0 (✓ API compatible changes)
* `homestar-wasm`: 0.1.1 -> 0.2.0 (✓ API compatible changes)
* `homestar-workflow`: 0.1.1 -> 0.2.0 (✓ API compatible changes)

### ⚠️ `homestar-runtime` breaking changes

```
--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.28.0/src/lints/enum_variant_added.ron

Failed in:
  variant Command:Node in /tmp/.tmp7PLiiL/homestar/homestar-runtime/src/cli.rs:149
  variant Command:Info in /tmp/.tmp7PLiiL/homestar/homestar-runtime/src/cli.rs:155
```

<details><summary><i><b>Changelog</b></i></summary><p>

## `homestar-runtime`
<blockquote>

##
[0.2.0](homestar-runtime-v0.1.1...homestar-runtime-v0.2.0)
- 2024-02-20

### Added
- Add OpenRPC API docs and associated JSON Schemas
([#534](#534))
- redial `node_addresses` at an interval on connection close
([#529](#529))

### Fixed
- add handling of dns multiaddrs + bootstrapping + CLI / Conn changes
([#547](#547))

### Other
- deps + flake cleanup
([#581](#581))
- Allow dead code default timeout
([#577](#577))
- Update homestar-functions to use cargo component
([#576](#576))
- fix transport order for wss possibility
([#563](#563))
- small comment, sorry
([#561](#561))
- move away from deadlines dealing w/ the runner and wasi-preview 2
wasmtime ([#560](#560))
- docker updates with info command and rpc host update
([#558](#558))
- just test conn ([#544](#544))
- handle this evil workflow_info test
([#543](#543))
- remove unnecessary deps and add tooling for those checks
([#541](#541))
- [chore(cargo)](deps): bump puffin from 0.18.1 to 0.19.0
([#537](#537))
- updates/flaky kills on ci
([#540](#540))
- release docs and cp readmes
([#530](#530))
- port selection and test config generation macro
([#528](#528))
- [chore(cargo)](deps): bump serde_with from 3.4.0 to 3.5.0
([#524](#524))
- [chore(cargo)](deps): bump moka from 0.12.3 to 0.12.4
([#525](#525))
</blockquote>

## `homestar-invocation`
<blockquote>

##
[0.2.0](homestar-invocation-v0.1.1...homestar-invocation-v0.2.0)
- 2024-02-20

### Added
- Add OpenRPC API docs and associated JSON Schemas
([#534](#534))

### Other
- deps + flake cleanup
([#581](#581))
- Update homestar-functions to use cargo component
([#576](#576))
- move away from deadlines dealing w/ the runner and wasi-preview 2
wasmtime ([#560](#560))
- remove unnecessary deps and add tooling for those checks
([#541](#541))
- release docs and cp readmes
([#530](#530))
</blockquote>

## `homestar-wasm`
<blockquote>

##
[0.2.0](homestar-wasm-v0.1.1...homestar-wasm-v0.2.0)
- 2024-02-20

### Other
- deps + flake cleanup
([#581](#581))
- Update homestar-functions to use cargo component
([#576](#576))
- move away from deadlines dealing w/ the runner and wasi-preview 2
wasmtime ([#560](#560))
- remove unnecessary deps and add tooling for those checks
([#541](#541))
- release docs and cp readmes
([#530](#530))
</blockquote>

## `homestar-workflow`
<blockquote>

##
[0.2.0](homestar-workflow-v0.1.1...homestar-workflow-v0.2.0)
- 2024-02-20

### Added
- Add OpenRPC API docs and associated JSON Schemas
([#534](#534))

### Other
- deps + flake cleanup
([#581](#581))
- remove unnecessary deps and add tooling for those checks
([#541](#541))
- release docs and cp readmes
([#530](#530))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

Signed-off-by: release-plz-ipvm-wg[bot] <144082651+release-plz-ipvm-wg[bot]@users.noreply.github.com>
Co-authored-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 21, 2024
1 parent c6c0067 commit 3c7c56a
Show file tree
Hide file tree
Showing 10 changed files with 74 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.1.1"
version = "0.2.0"

[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
Expand Down
12 changes: 12 additions & 0 deletions homestar-invocation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ 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-20

### Added
- Add OpenRPC API docs and associated JSON Schemas ([#534](https://github.com/ipvm-wg/homestar/pull/534))

### Other
- deps + flake cleanup ([#581](https://github.com/ipvm-wg/homestar/pull/581))
- Update homestar-functions to use cargo component ([#576](https://github.com/ipvm-wg/homestar/pull/576))
- 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
27 changes: 27 additions & 0 deletions homestar-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ 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-20

### Added
- Add OpenRPC API docs and associated JSON Schemas ([#534](https://github.com/ipvm-wg/homestar/pull/534))
- 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
- deps + flake cleanup ([#581](https://github.com/ipvm-wg/homestar/pull/581))
- Allow dead code default timeout ([#577](https://github.com/ipvm-wg/homestar/pull/577))
- Update homestar-functions to use cargo component ([#576](https://github.com/ipvm-wg/homestar/pull/576))
- fix transport order for wss possibility ([#563](https://github.com/ipvm-wg/homestar/pull/563))
- 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 @@ -70,11 +70,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 @@ -203,7 +203,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
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.1", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.1", path = "../homestar-runtime", default-features = false, features = [
homestar-invocation = { version = "0.2", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.2", path = "../homestar-runtime", default-features = false, features = [
"websocket-notify",
] }
homestar-workflow = { version = "0.1", path = "../homestar-workflow", default-features = false }
homestar-workflow = { version = "0.2", path = "../homestar-workflow", default-features = false }
homestar-workspace-hack = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions homestar-wasm/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.2.0](https://github.com/ipvm-wg/homestar/compare/homestar-wasm-v0.1.1...homestar-wasm-v0.2.0) - 2024-02-20

### Other
- deps + flake cleanup ([#581](https://github.com/ipvm-wg/homestar/pull/581))
- Update homestar-functions to use cargo component ([#576](https://github.com/ipvm-wg/homestar/pull/576))
- 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
10 changes: 10 additions & 0 deletions homestar-workflow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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-20

### Added
- Add OpenRPC API docs and associated JSON Schemas ([#534](https://github.com/ipvm-wg/homestar/pull/534))

### Other
- deps + flake cleanup ([#581](https://github.com/ipvm-wg/homestar/pull/581))
- 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,7 +19,7 @@ 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 = { workspace = true }
libipld = { workspace = true }
Expand All @@ -28,7 +28,7 @@ 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 3c7c56a

Please sign in to comment.