Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jun 19, 2023
1 parent b8fb5aa commit 8d9c5d5
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
16 changes: 8 additions & 8 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/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "starbase_events"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
license = "MIT"
description = "Async and mutable event system."
repository = "https://github.com/moonrepo/starbase"

[dependencies]
starbase_macros = { version = "0.1.7", path = "../macros" }
starbase_macros = { version = "0.1.8", path = "../macros" }
async-trait = { workspace = true }
miette = { workspace = true }
tokio = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "starbase"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
license = "MIT"
description = "Framework for building performant command line applications and developer tools."
repository = "https://github.com/moonrepo/starbase"
readme = "../../README.md"

[dependencies]
starbase_events = { version = "0.1.6", path = "../events" }
starbase_macros = { version = "0.1.7", path = "../macros" }
starbase_styles = { version = "0.1.9", path = "../styles", features = ["theme"] }
starbase_events = { version = "0.1.7", path = "../events" }
starbase_macros = { version = "0.1.8", path = "../macros" }
starbase_styles = { version = "0.1.10", path = "../styles", features = ["theme"] }
async-trait = { workspace = true }
chrono = { version = "0.4.26", default-features = false, features = ["clock", "std"] }
miette = { workspace = true, features = ["fancy"] }
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.1.7"
version = "0.1.8"
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,13 +1,13 @@
[package]
name = "starbase_sandbox"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT"
description = "A temporary sandbox for testing file system and process operations, with fixtures support."
repository = "https://github.com/moonrepo/starbase"

[dependencies]
starbase_utils = { version = "0.2.11", path = "../utils", default-features = false }
starbase_utils = { version = "0.2.12", path = "../utils", default-features = false }
assert_cmd = "2.0.11"
assert_fs = "1.0.13"
clean-path = "0.2.1"
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.1.9"
version = "0.1.10"
edition = "2021"
license = "MIT"
description = "Utilities for styling the terminal."
Expand Down
2 changes: 1 addition & 1 deletion crates/test-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_app"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
publish = false

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

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.2.11"
version = "0.2.12"
edition = "2021"
license = "MIT"
description = "General fs, io, serde, etc, utilities."
Expand All @@ -13,7 +13,7 @@ once_cell = { workspace = true }
relative-path = { workspace = true }
regex = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
starbase_styles = { version = "0.1.9", path = "../styles" }
starbase_styles = { version = "0.1.10", path = "../styles" }
tracing = { workspace = true }
thiserror = { workspace = true }

Expand Down

0 comments on commit 8d9c5d5

Please sign in to comment.