Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #527

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading