Skip to content

Commit

Permalink
chore: release config (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeeshan Lakhani authored Oct 10, 2023
1 parent d2708df commit f7a0b4f
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 10 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ authors = [
]
edition = "2021"
license = "Apache"
repository = "https://github.com/ipvm-wg/homestar"
rust-version = "1.70.0"
version = "0.1.0"

[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
Expand Down
5 changes: 2 additions & 3 deletions homestar-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "homestar-core"
version = "0.1.0"
version = { workspace = true }
description = "Homestar core library for working with tasks, instructions, etc"
keywords = ["ipld", "tasks", "receipts", "ipvm"]
categories = ["workflow-engines", "core", "libraries"]
include = ["/src", "README.md", "LICENSE"]
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar-core"
repository = "https://github.com/ipvm-wg/homestar"
repository = { workspace = true }
authors = { workspace = true }

[lib]
Expand Down
5 changes: 2 additions & 3 deletions homestar-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "homestar-runtime"
version = "0.1.0"
version = { workspace = true }
description = "Homestar CLI"
keywords = ["ipfs", "workflows", "ipld", "ipvm"]
categories = [
Expand All @@ -9,13 +9,12 @@ categories = [
"runtimes",
"networking",
]
include = ["/src", "README.md", "LICENSE"]
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar"
repository = "https://github.com/ipvm-wg/homestar"
repository = { workspace = true }
authors = { workspace = true }
autotests = false

Expand Down
5 changes: 2 additions & 3 deletions homestar-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "homestar-wasm"
version = "0.1.0"
version = { workspace = true }
description = "Homestar Wasm / Wasmtime implementation and IPLD <=> WIT interpreter"
keywords = ["wasm", "wasmtime", "wit", "ipld", "ipvm"]
categories = ["wasm", "execution-engines"]
include = ["/src", "README.md", "LICENSE"]
license = { workspace = true }
readme = "README.md"
edition = { workspace = true }
rust-version = { workspace = true }
documentation = "https://docs.rs/homestar-wasm"
repository = "https://github.com/ipvm-wg/homestar"
repository = { workspace = true }
authors = { workspace = true }

[lib]
Expand Down
34 changes: 33 additions & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
[workspace]
allow_dirty = true
publish = false
changelog_update = false
pr_labels = ["release"]

[[package]]
name = "homestar-core"
publish = true
changelog_update = true
git_release_enable = true

[[package]]
name = "homestar-runtime"
publish = true
changelog_update = true
git_release_enable = true

[[package]]
name = "homestar-wasm"
publish = true
changelog_update = true
git_release_enable = true

[[package]]
name = "homestar-functions-add"
publish = false

[[package]]
name = "homestar-functions-test"
publish = false

[[package]]
name = "example-websocket-relay"
publish = false

0 comments on commit f7a0b4f

Please sign in to comment.