Skip to content

Commit 2186233

Browse files
committed
Update indexical version, release 0.14.1
1 parent 0a69af8 commit 2186233

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
The Rust compiler's interface is not stable, so the only sensible way to develop a Rust compiler plugin is by pinning to a specific nightly. Each version of `rustc_plugin` is pinned to one nightly, and you *have* to use the same nightly version that we do. Therefore each release of `rustc_plugin` has a semantic version number (e.g. `0.1.0`) and the nightly version is added as a prerelease label (e.g. `-nightly-2023-08-25`). You can add a dependency to your `Cargo.toml` like this:
1212

1313
```toml
14-
rustc_plugin = "=0.14.0-nightly-2025-08-20"
14+
rustc_plugin = "=0.14.1-nightly-2025-08-20"
1515
```
1616

1717
We will treat a change to the nightly version as a breaking change, so the semantic version will be correspondingly updated as a breaking update.

crates/rustc_plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_plugin"
3-
version = "0.14.0-nightly-2025-08-20"
3+
version = "0.14.1-nightly-2025-08-20"
44
edition = "2024"
55
authors = ["Will Crichton <crichton.will@gmail.com>"]
66
description = "A framework for writing plugins that integrate with the Rust compiler"

crates/rustc_utils/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_utils"
3-
version = "0.14.0-nightly-2025-08-20"
3+
version = "0.14.1-nightly-2025-08-20"
44
edition = "2024"
55
authors = ["Will Crichton <crichton.will@gmail.com>"]
66
description = "Utilities for working with the Rust compiler"
@@ -27,9 +27,7 @@ serde = { version = "1", features = ["derive"], optional = true }
2727
textwrap = { version = "0.16", optional = true }
2828
regex = { version = "1", optional = true }
2929
ts-rs = { version = "7", optional = true }
30-
indexical = { version = "0.7.0", default-features = false, features = [
31-
"rustc",
32-
], optional = true }
30+
indexical = { version = "0.9.0", default-features = false, features = ["rustc"], optional = true }
3331

3432
[dev-dependencies]
3533
rustc_utils = { path = ".", features = ["test"] }

0 commit comments

Comments
 (0)