Skip to content

Commit

Permalink
Merge pull request #825 from ShoyuVanilla/bump-versions
Browse files Browse the repository at this point in the history
Bump versions to `0.100.0-dev.0`
  • Loading branch information
jackh726 authored Mar 4, 2025
2 parents 15eeceb + 9262ad2 commit 3bca13c
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 40 deletions.
18 changes: 9 additions & 9 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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.99.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.99.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.99.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.99.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.99.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.99.0-dev.0", path = "chalk-integration" }
chalk-derive = { version = "0.100.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.100.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.100.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.100.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.100.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.100.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.100.0-dev.0", path = "chalk-integration" }

[workspace]

Expand Down
6 changes: 5 additions & 1 deletion book/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ additional-js = ["mermaid.min.js", "mermaid-init.js"]
follow-web-links = true
warning-policy = "error"
optional = true
exclude = [
# This even returns 403 on real browsers with Cloudflare's verify human challenge
'dl\.acm\.org',
]

# Workaround for GitHub docs returning 403 response: https://github.com/github/docs/issues/17358
[output.linkcheck.http-headers]
"https://help.github.com" = ["accept-encoding: deflate, gzip, br"]
"https://help.github.com" = ["accept-encoding: deflate, gzip, br"]
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.99.0-dev.0"
version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.99.0-dev.0", path = "../chalk-solve" }
chalk-derive = { version = "0.100.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.100.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.99.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.99.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.99.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.99.0-dev.0", path = "../chalk-parse" }
chalk-derive = { version = "0.100.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.100.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.100.0-dev.0", path = "../chalk-solve" }
chalk-recursive = { version = "0.100.0-dev.0", path = "../chalk-recursive" }
chalk-engine = { version = "0.100.0-dev.0", path = "../chalk-engine" }
chalk-parse = { version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "../chalk-derive" }
chalk-derive = { version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.99.0-dev.0", path = "../chalk-solve", default-features = false }
chalk-derive = { version = "0.100.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.100.0-dev.0", path = "../chalk-ir" }
chalk-solve = { version = "0.100.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.99.0-dev.0"
version = "0.100.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.99.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.99.0-dev.0", path = "../chalk-ir" }
chalk-derive = { version = "0.100.0-dev.0", path = "../chalk-derive" }
chalk-ir = { version = "0.100.0-dev.0", path = "../chalk-ir" }
indexmap = "2"

[dev-dependencies]
Expand Down

0 comments on commit 3bca13c

Please sign in to comment.