Skip to content

Commit 002d1c1

Browse files
committed
Release v0.14.3
1 parent 9a3e9ed commit 002d1c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
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.1-nightly-2025-08-20"
14+
rustc_plugin = "=0.14.3-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.
@@ -61,6 +61,6 @@ Normally, Rust libraries have a [minimum supported Rust version][msrv] because t
6161
[Argus]: https://github.com/cognitive-engineering-lab/argus
6262
[Clippy]: https://github.com/rust-lang/rust-clippy
6363
[example]: https://github.com/cognitive-engineering-lab/rustc_plugin/tree/main/crates/rustc_plugin/examples/print-all-items
64-
[docs]: https://cognitive-engineering-lab.github.io/rustc_plugin/v0.14.0-nightly-2025-08-20/rustc_plugin/
65-
[docs-utils]: https://cognitive-engineering-lab.github.io/rustc_plugin/v0.14.0-nightly-2025-08-20/rustc_utils/
64+
[docs]: https://cognitive-engineering-lab.github.io/rustc_plugin/v0.14.3-nightly-2025-08-20/rustc_plugin/
65+
[docs-utils]: https://cognitive-engineering-lab.github.io/rustc_plugin/v0.14.3-nightly-2025-08-20/rustc_utils/
6666
[msrv]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field

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.2-nightly-2025-08-20"
3+
version = "0.14.3-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_utils"
3-
version = "0.14.2-nightly-2025-08-20"
3+
version = "0.14.3-nightly-2025-08-20"
44
edition = "2024"
55
authors = ["Will Crichton <crichton.will@gmail.com>"]
66
description = "Utilities for working with the Rust compiler"

0 commit comments

Comments
 (0)