Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Dec 17, 2024
1 parent e4babb9 commit db82ac2
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
18 changes: 9 additions & 9 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 crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_common"
version = "0.0.8"
version = "0.0.9"
edition = "2021"
license = "MIT"
description = "Common utilities."
Expand Down
6 changes: 3 additions & 3 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_config"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
license = "MIT"
description = "Core workspace, project, and moon configuration."
Expand All @@ -12,8 +12,8 @@ publish = true
features = ["loader"]

[dependencies]
moon_common = { version = "0.0.8", path = "../common" }
moon_target = { version = "0.0.7", path = "../target" }
moon_common = { version = "0.0.9", path = "../common" }
moon_target = { version = "0.0.8", path = "../target" }
indexmap = { workspace = true }
miette = { workspace = true }
once_cell = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/file-group/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_file_group"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "File groups and collections."
Expand Down
6 changes: 3 additions & 3 deletions crates/pdk-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_pdk_api"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
license = "MIT"
description = "Core APIs for creating moon WASM plugins."
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_common = { version = "0.0.8", path = "../common" }
moon_config = { version = "0.0.10", path = "../config" }
moon_common = { version = "0.0.9", path = "../common" }
moon_config = { version = "0.0.11", path = "../config" }
rustc-hash = { workspace = true }
schematic = { workspace = true, features = ["schema_serde"] }
serde = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/pdk-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_pdk_test_utils"
version = "0.0.11"
version = "0.0.12"
edition = "2021"
license = "MIT"
description = "Utilities for testing moon WASM plugins."
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_pdk_api = { version = "0.0.10", path = "../pdk-api" }
moon_pdk_api = { version = "0.0.11", path = "../pdk-api" }
warpgate = { workspace = true }
extism = { workspace = true }
serde = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/pdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_pdk"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
license = "MIT"
description = "A plugin development kit for creating moon WASM plugins."
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_pdk_api = { version = "0.0.10", path = "../pdk-api" }
moon_pdk_api = { version = "0.0.11", path = "../pdk-api" }
clap = { workspace = true, features = ["derive"] }
extism-pdk = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false
[dependencies]
moon_common = { path = "../common" }
moon_env = { path = "../env" }
moon_pdk_api = { version = "0.0.10", path = "../pdk-api" }
moon_pdk_api = { version = "0.0.11", path = "../pdk-api" }
moon_target = { path = "../target" }
moon_workspace_graph = { path = "../workspace-graph" }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/project/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_project"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "A project (app, lib, etc) in moon."
Expand Down
4 changes: 2 additions & 2 deletions crates/target/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_target"
version = "0.0.7"
version = "0.0.8"
edition = "2021"
license = "MIT"
description = "Project + task target identifier."
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_common = { version = "0.0.8", path = "../common" }
moon_common = { version = "0.0.9", path = "../common" }
compact_str = { workspace = true }
miette = { workspace = true }
once_cell = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/task/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moon_task"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "A task within a project."
Expand Down

0 comments on commit db82ac2

Please sign in to comment.