Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
feat(cargo): Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed Jan 13, 2016
1 parent 0c3dc4e commit 39bc4ca
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions quasi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quasi"
version = "0.3.12"
version = "0.4.0"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A quasi-quoting macro system"
Expand All @@ -10,4 +10,4 @@ repository = "https://github.com/erickt/rust-quasi"
with-syntex = ["syntex_syntax"]

[dependencies]
syntex_syntax = { version = "^0.25.0", optional = true }
syntex_syntax = { version = "^0.26.0", optional = true }
8 changes: 4 additions & 4 deletions quasi_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quasi_codegen"
version = "0.3.12"
version = "0.4.0"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A quasi-quoting macro system"
Expand All @@ -11,6 +11,6 @@ default = ["with-syntex"]
with-syntex = ["syntex", "syntex_syntax", "aster/with-syntex"]

[dependencies]
aster = { version = "^0.9.3", default-features = false }
syntex = { version = "^0.25.0", optional = true }
syntex_syntax = { version = "^0.25.0", optional = true }
aster = { version = "^0.10.0", default-features = false }
syntex = { version = "^0.26.0", optional = true }
syntex_syntax = { version = "^0.26.0", optional = true }
6 changes: 3 additions & 3 deletions quasi_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quasi_macros"
version = "0.3.12"
version = "0.4.0"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A quasi-quoting macro system"
Expand All @@ -11,8 +11,8 @@ name = "quasi_macros"
plugin = true

[dependencies]
quasi_codegen = { version = "*", path = "../quasi_codegen", default-features = false }

This comment has been minimized.

Copy link
@sgrif

sgrif Jan 13, 2016

Is there any chance of releasing a 0.3.13 that doesn't have the * version here? The released versions of diesel will no longer compile since it resolves to 0.4.0

This comment has been minimized.

Copy link
@erickt

erickt Jan 13, 2016

Author

Sure, gimme a sec.

quasi_codegen = { version = "^0.4.0", path = "../quasi_codegen", default-features = false }

[dev-dependencies]
aster = "^0.9.3"
aster = "^0.10.0"
quasi = { version = "*", path = "../quasi" }
14 changes: 7 additions & 7 deletions quasi_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "quasi_tests"
version = "0.3.0"
version = "0.4.0"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A quasi-quoting macro system"
repository = "https://github.com/erickt/rust-quasi"
build = "build.rs"

[build-dependencies]
quasi_codegen = { version = "*", path = "../quasi_codegen" }
syntex = { version = "^0.25.0" }
quasi_codegen = { path = "../quasi_codegen" }
syntex = { version = "^0.26.0" }

[dev-dependencies]
aster = { version = "^0.9.3", features = ["with-syntex"] }
quasi = { version = "*", path = "../quasi", features = ["with-syntex"] }
syntex = { version = "^0.25.0" }
syntex_syntax = { version = "^0.25.0" }
aster = { version = "^0.10.0", features = ["with-syntex"] }
quasi = { path = "../quasi", features = ["with-syntex"] }
syntex = { version = "^0.26.0" }
syntex_syntax = { version = "^0.26.0" }

0 comments on commit 39bc4ca

Please sign in to comment.