File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change
1
+ <a name =" v0.56.0 " ></a >
2
+ # [ v0.56.0] ( https://github.com/rust-lang/rustdoc-types/releases/tag/v0.56.0 ) - 2025-09-05
3
+
4
+ TODO: Changelog.
5
+
6
+ - Format Version: 56
7
+ - Upstream Commit: [ ` ab0ee84eac9732e4e81e559c688846b4c1bd400a ` ] ( https://github.com/rust-lang/rust/commit/ab0ee84eac9732e4e81e559c688846b4c1bd400a )
8
+ - Diff: [ v0.55.0...v0.56.0] ( https://github.com/rust-lang/rustdoc-types/compare/v0.55.0...v0.56.0 )
9
+
1
10
<a name =" v0.55.0 " ></a >
2
11
# [ v0.55.0] ( https://github.com/rust-lang/rustdoc-types/releases/tag/v0.55.0 ) - 2025-08-02
3
12
Original file line number Diff line number Diff line change 1
- a33e084afe698e0a025211abd6dc1c9a4bb22e9d
1
+ ab0ee84eac9732e4e81e559c688846b4c1bd400a
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustdoc-types"
3
- version = " 0.55 .0"
3
+ version = " 0.56 .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 @@ -36,8 +36,8 @@ use serde_derive::{Deserialize, Serialize};
36
36
// will instead cause conflicts. See #94591 for more. (This paragraph and the "Latest feature" line
37
37
// are deliberately not in a doc comment, because they need not be in public docs.)
38
38
//
39
- // Latest feature: Add Attribute::MacroUse
40
- pub const FORMAT_VERSION : u32 = 55 ;
39
+ // Latest feature: Add `ItemKind::Attribute`.
40
+ pub const FORMAT_VERSION : u32 = 56 ;
41
41
42
42
/// The root of the emitted JSON blob.
43
43
///
@@ -551,6 +551,11 @@ pub enum ItemKind {
551
551
/// [`Item`]s of this kind only come from the come library and exist solely
552
552
/// to carry documentation for the respective keywords.
553
553
Keyword ,
554
+ /// An attribute declaration.
555
+ ///
556
+ /// [`Item`]s of this kind only come from the core library and exist solely
557
+ /// to carry documentation for the respective builtin attributes.
558
+ Attribute ,
554
559
}
555
560
556
561
/// Specific fields of an item.
You can’t perform that action at this time.
0 commit comments