Skip to content

Commit 6577cda

Browse files
committed
v0.34.0
1 parent 67e1549 commit 6577cda

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="v0.34.0"></a>
2+
# [v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.34.0) - 2025-01-15
3+
4+
**Breaking Change**: The `Path::name` field now only holds item name rather than
5+
the full path. Users needing the full path can find it in the `Crate::paths` map
6+
([rust#134880](https://github.com/rust-lang/rust/pull/134880)).
7+
8+
No changes were made to the schema (i.e. the public api for this crate is
9+
unchanged), but the format version has been bumped, as this may effect consuming
10+
tools regardless.
11+
12+
- Format Version: 38
13+
- Upstream Commit: [`2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8`](https://github.com/rust-lang/rust/commit/2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8)
14+
- Diff: [v0.33.0...v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.33.0...v0.34.0)
15+
116
<a name="v0.33.0"></a>
217
# [v0.33.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.33.0) - 2024-12-03
318

Diff for: COMMIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f33dba028704d108497b8c06943b9bbc3d14c42b
1+
2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustdoc-types"
3-
version = "0.33.0"
3+
version = "0.34.0"
44
edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Types for rustdoc's json output"

Diff for: src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use serde::{Deserialize, Serialize};
2929
/// This integer is incremented with every breaking change to the API,
3030
/// and is returned along with the JSON blob as [`Crate::format_version`].
3131
/// Consuming code should assert that this value matches the format version(s) that it supports.
32-
pub const FORMAT_VERSION: u32 = 37;
32+
pub const FORMAT_VERSION: u32 = 38;
3333

3434
/// The root of the emitted JSON blob.
3535
///

0 commit comments

Comments
 (0)