Skip to content

Commit

Permalink
v0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aDotInTheVoid committed Jan 15, 2025
1 parent 67e1549 commit 6577cda
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
<a name="v0.34.0"></a>
# [v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.34.0) - 2025-01-15

**Breaking Change**: The `Path::name` field now only holds item name rather than
the full path. Users needing the full path can find it in the `Crate::paths` map
([rust#134880](https://github.com/rust-lang/rust/pull/134880)).

No changes were made to the schema (i.e. the public api for this crate is
unchanged), but the format version has been bumped, as this may effect consuming
tools regardless.

- 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)

<a name="v0.33.0"></a>
# [v0.33.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.33.0) - 2024-12-03

Expand Down
2 changes: 1 addition & 1 deletion COMMIT.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f33dba028704d108497b8c06943b9bbc3d14c42b
2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit 6577cda

Please sign in to comment.