diff --git a/CHANGELOG.md b/CHANGELOG.md index 95bf4ad..eb94d27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + +# [v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.34.0) - 2025-01-15 + +**Breaking Change**: The `Path::name` now only holds item name rather than full name + +- Format Version: 38 +- Upstream Commit: [`2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8`](https://github.com/rust-lang/rust/commit/2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8) +- Diff: [v0.33.0...v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.33.0...v0.34.0) + # [v0.33.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.33.0) - 2024-12-03 diff --git a/COMMIT.txt b/COMMIT.txt index 21b6e68..8a2808a 100644 --- a/COMMIT.txt +++ b/COMMIT.txt @@ -1 +1 @@ -f33dba028704d108497b8c06943b9bbc3d14c42b +2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8 diff --git a/Cargo.toml b/Cargo.toml index e1c66a4..2b0f2b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustdoc-types" -version = "0.33.0" +version = "0.34.0" edition = "2018" license = "MIT OR Apache-2.0" description = "Types for rustdoc's json output" diff --git a/src/lib.rs b/src/lib.rs index 2229b6e..a6e01c8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ use serde::{Deserialize, Serialize}; /// This integer is incremented with every breaking change to the API, /// and is returned along with the JSON blob as [`Crate::format_version`]. /// Consuming code should assert that this value matches the format version(s) that it supports. -pub const FORMAT_VERSION: u32 = 37; +pub const FORMAT_VERSION: u32 = 38; /// The root of the emitted JSON blob. ///