Skip to content

Commit

Permalink
bump version (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
ealmloff authored Aug 7, 2024
1 parent 8508476 commit 4895aeb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ keywords = ["assets"]
[lib]

[dependencies]
manganis-macro = { path = "./macro", version = "0.3.0-alpha.0", optional = true }
manganis-macro = { path = "./macro", version = "0.3.0-alpha.1", optional = true }

[workspace]
package.version = "0.3.0-alpha.0"
package.version = "0.3.0-alpha.1"
members = ["macro", "common", "cli-support", "test-package", "test-package/test-package-dependency", "test-package/test-package-nested-dependency"]

[features]
Expand Down
2 changes: 1 addition & 1 deletion cli-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["assets"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
manganis-common = { path = "../common", version = "0.3.0-alpha.0" }
manganis-common = { path = "../common", version = "0.3.0-alpha.1" }

serde = { version = "1.0.183", features = ["derive"] }
serde_json = {version="1.0.116"}
Expand Down
6 changes: 3 additions & 3 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ proc-macro = true
proc-macro2 = { version = "1.0" }
quote = "1.0"
syn = { version = "2.0", features = ["full", "extra-traits"] }
manganis-common = { path = "../common", version = "0.3.0-alpha.0" }
manganis-cli-support = { path = "../cli-support", version = "0.3.0-alpha.0", optional = true }
manganis-common = { path = "../common", version = "0.3.0-alpha.1" }
manganis-cli-support = { path = "../cli-support", version = "0.3.0-alpha.1", optional = true }
base64 = { version = "0.21.5", optional = true }
tracing-subscriber = "0.3.18"
serde_json = "1.0"

[build-dependencies]
manganis-common = { path = "../common", version = "0.3.0-alpha.0" }
manganis-common = { path = "../common", version = "0.3.0-alpha.1" }

[features]
url-encoding = ["manganis-cli-support", "base64"]

0 comments on commit 4895aeb

Please sign in to comment.