Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version number to 0.98.0-dev.0 to fix automatic releases #813

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Model of the Rust trait system"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -21,13 +21,13 @@ salsa = "0.16.0"
serde = "1.0"
serde_derive = "1.0"

chalk-derive = { version = "0.97.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.97.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.97.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.97.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.97.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.97.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.97.0-dev.0", path = "chalk-integration" }
chalk-derive = { version = "0.98.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.98.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.98.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.98.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.98.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.98.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.98.0-dev.0", path = "chalk-integration" }

[workspace]

Expand Down
2 changes: 1 addition & 1 deletion chalk-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-derive"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "A helper crate for use by chalk crates for `derive` macros."
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand Down
8 changes: 4 additions & 4 deletions chalk-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-engine"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Core trait engine from Chalk project"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -16,9 +16,9 @@ default = []
rustc-hash = { version = "1.1.0" }
tracing = "0.1"

chalk-derive = { version = "0.97.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.97.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.97.0-dev.0", path = "../chalk-solve" }
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve" }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }
14 changes: 7 additions & 7 deletions chalk-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-integration"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
license = "MIT OR Apache-2.0"
description = "Sample solver setup for Chalk"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -14,10 +14,10 @@ string_cache = "0.8.0"
salsa = "0.16.0"
tracing = "0.1"

chalk-derive = { version = "0.97.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.97.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.97.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.97.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.97.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.97.0-dev.0", path = "../chalk-parse" }
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.98.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.98.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.98.0-dev.0", path = "../chalk-parse" }
indexmap = "2"
4 changes: 2 additions & 2 deletions chalk-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-ir"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Chalk's internal representation of types, goals, and clauses"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -11,4 +11,4 @@ edition = "2018"

[dependencies]
bitflags = "2.4.1"
chalk-derive = { version = "0.97.0-dev.0", path = "../chalk-derive" }
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
2 changes: 1 addition & 1 deletion chalk-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-parse"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Parser for the Chalk project"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand Down
8 changes: 4 additions & 4 deletions chalk-recursive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-recursive"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Recursive solver for the Chalk project"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -13,9 +13,9 @@ edition = "2018"
rustc-hash = { version = "1.1.0" }
tracing = "0.1"

chalk-derive = { version = "0.97.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.97.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.97.0-dev.0", path = "../chalk-solve", default-features = false }
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.98.0-dev.0", path = "../chalk-solve", default-features = false }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }
Expand Down
6 changes: 3 additions & 3 deletions chalk-solve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chalk-solve"
version = "0.97.0-dev.0"
version = "0.98.0-dev.0"
description = "Combines the chalk-engine with chalk-ir"
license = "MIT OR Apache-2.0"
authors = ["Rust Compiler Team", "Chalk developers"]
Expand All @@ -18,8 +18,8 @@ tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter
tracing-tree = { version = "0.3", optional = true }
rustc-hash = { version = "1.1.0" }

chalk-derive = { version = "0.97.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.97.0-dev.0", path = "../chalk-ir" }
chalk-derive = { version = "0.98.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.98.0-dev.0", path = "../chalk-ir" }
indexmap = "2"

[dev-dependencies]
Expand Down
Loading