Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed May 11, 2023
1 parent e260a25 commit 6f59715
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.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
description = "Async and mutable event system."
repository = "https://github.com/moonrepo/starbase"

[dependencies]
starbase_macros = { version = "0.1.5", path = "../macros" }
starbase_macros = { version = "0.1.6", 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.8"
version = "0.1.9"
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.4", path = "../events" }
starbase_macros = { version = "0.1.5", path = "../macros" }
starbase_styles = { version = "0.1.6", path = "../styles", features = ["theme"] }
starbase_events = { version = "0.1.5", path = "../events" }
starbase_macros = { version = "0.1.6", path = "../macros" }
starbase_styles = { version = "0.1.7", path = "../styles", features = ["theme"] }
async-trait = { workspace = true }
chrono = { version = "0.4.24", 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.5"
version = "0.1.6"
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,6 +1,6 @@
[package]
name = "starbase_sandbox"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "A temporary sandbox for testing file system and process operations, with fixtures support."
Expand All @@ -14,4 +14,4 @@ insta = "1.29.0"
once_cell = { workspace = true }
predicates = "3.0.3"
pretty_assertions = "1.3.0"
starbase_utils = { version = "0.2.8", path = "../utils", default-features = false }
starbase_utils = { version = "0.2.9", path = "../utils", default-features = false }
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.6"
version = "0.1.7"
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.4"
version = "0.1.5"
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.3"
version = "0.1.4"
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.8"
version = "0.2.9"
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.6", path = "../styles" }
starbase_styles = { version = "0.1.7", path = "../styles" }
tracing = { workspace = true }
thiserror = { workspace = true }

Expand Down

0 comments on commit 6f59715

Please sign in to comment.