File tree 4 files changed +18
-3
lines changed
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
16
<a name =" v0.33.0 " ></a >
2
17
# [ v0.33.0] ( https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.33.0 ) - 2024-12-03
3
18
Original file line number Diff line number Diff line change 1
- f33dba028704d108497b8c06943b9bbc3d14c42b
1
+ 2c4aee92fa65e74f23ad7853937db8d2c4bfa6c8
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustdoc-types"
3
- version = " 0.33 .0"
3
+ version = " 0.34 .0"
4
4
edition = " 2018"
5
5
license = " MIT OR Apache-2.0"
6
6
description = " Types for rustdoc's json output"
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use serde::{Deserialize, Serialize};
29
29
/// This integer is incremented with every breaking change to the API,
30
30
/// and is returned along with the JSON blob as [`Crate::format_version`].
31
31
/// 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 ;
33
33
34
34
/// The root of the emitted JSON blob.
35
35
///
You can’t perform that action at this time.
0 commit comments