Skip to content

Commit a31c7a0

Browse files
committed
v0.34.0
1 parent 67e1549 commit a31c7a0

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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` now only holds item name rather than full name
5+
6+
- Format Version: 38
7+
- Upstream Commit: [`2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8`](https://github.com/rust-lang/rust/commit/2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8)
8+
- Diff: [v0.33.0...v0.34.0](https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.33.0...v0.34.0)
9+
110
<a name="v0.33.0"></a>
211
# [v0.33.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.33.0) - 2024-12-03
312

COMMIT.txt

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

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"

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)