Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 3, 2024
1 parent c9ae430 commit 86f70d5
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "MIT"
description = "Framework for building performant command line applications and developer tools."
Expand All @@ -11,7 +11,7 @@ rust-version = "1.70.0"
all-features = true

[dependencies]
starbase_styles = { version = "0.4.4", path = "../styles", features = [
starbase_styles = { version = "0.4.5", path = "../styles", features = [
"theme",
] }
async-trait = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/archive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase_archive"
version = "0.8.7"
version = "0.8.8"
edition = "2021"
license = "MIT"
description = "Utilities for packing and unpacking archives. Supports tar and zip."
Expand All @@ -11,8 +11,8 @@ rust-version = "1.80.0"
all-features = true

[dependencies]
starbase_styles = { version = "0.4.4", path = "../styles" }
starbase_utils = { version = "0.8.10", path = "../utils", default-features = false, features = [
starbase_styles = { version = "0.4.5", path = "../styles" }
starbase_utils = { version = "0.8.11", path = "../utils", default-features = false, features = [
"glob",
] }
miette = { workspace = true, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "starbase_events"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "MIT"
description = "Async and mutable event system."
repository = "https://github.com/moonrepo/starbase"
rust-version = "1.70.0"

[dependencies]
starbase_macros = { version = "0.7.6", path = "../macros", features = [
starbase_macros = { version = "0.7.7", path = "../macros", features = [
"events",
] }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase_macros"
version = "0.7.6"
version = "0.7.7"
edition = "2021"
license = "MIT"
description = "Macros for the starbase framework."
Expand Down
4 changes: 2 additions & 2 deletions crates/sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "starbase_sandbox"
version = "0.7.4"
version = "0.7.5"
edition = "2021"
license = "MIT"
description = "A temporary sandbox for testing file system and process operations, with fixtures support."
repository = "https://github.com/moonrepo/starbase"
rust-version = "1.80.0"

[dependencies]
starbase_utils = { version = "0.8.10", path = "../utils", default-features = false }
starbase_utils = { version = "0.8.11", path = "../utils", default-features = false }
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
clean-path = "0.2.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase_shell"
version = "0.5.8"
version = "0.5.9"
edition = "2021"
license = "MIT"
description = "Utilities for detecting shells and managing profile files."
Expand Down
2 changes: 1 addition & 1 deletion crates/styles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase_styles"
version = "0.4.4"
version = "0.4.5"
edition = "2021"
license = "MIT"
description = "Utilities for styling the terminal."
Expand Down
4 changes: 2 additions & 2 deletions crates/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starbase_utils"
version = "0.8.10"
version = "0.8.11"
edition = "2021"
license = "MIT"
description = "General fs, io, serde, net, etc, utilities."
Expand All @@ -11,7 +11,7 @@ rust-version = "1.80.0"
all-features = true

[dependencies]
starbase_styles = { version = "0.4.4", path = "../styles" }
starbase_styles = { version = "0.4.5", path = "../styles" }
dirs = { workspace = true }
miette = { workspace = true, optional = true }
regex = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_app"
version = "0.5.4"
version = "0.5.5"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion examples/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_lib"
version = "0.5.4"
version = "0.5.5"
edition = "2021"
publish = false

Expand Down

0 comments on commit 86f70d5

Please sign in to comment.