File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
1
+ <a name =" v0.24.0 " ></a >
2
+ # [ v0.24.0] ( https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.24.0 ) - 2023-12-23
3
+
4
+ ** Breaking Change** : ` Trait ` now includes the ` is_object_safe ` field. ([ rust #119246 ] ( https://github.com/rust-lang/rust/pull/119246 ) )
5
+
6
+ ** Internal Improvement** : The scripts to generate the changelog have been revamped to allow
7
+ hand-written information in the changelog, and to make the release process easier.
8
+
9
+ - Format Version: 28
10
+ - Upstream Commit: [ ` c29f763153ac89e7930c6d50f5ab4656318b30d4 ` ] ( https://github.com/rust-lang/rust/commit/c29f763153ac89e7930c6d50f5ab4656318b30d4 )
11
+ - Diff: [ v0.23.0...v0.24.0] ( https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.23.0...v0.24.0 )
12
+
1
13
<a name =" v0.23.0 " ></a >
2
14
# [ v0.23.0] ( https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.23.0 ) - 2023-08-23
3
15
- Format Version: 27
Original file line number Diff line number Diff line change 1
- c90a5b2019e5a862c8fb5ae39dcf6ad5f4c65b09
1
+ c29f763153ac89e7930c6d50f5ab4656318b30d4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustdoc-types"
3
- version = " 0.23 .0"
3
+ version = " 0.24 .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 @@ -8,7 +8,7 @@ use serde::{Deserialize, Serialize};
8
8
use std:: path:: PathBuf ;
9
9
10
10
/// rustdoc format-version.
11
- pub const FORMAT_VERSION : u32 = 27 ;
11
+ pub const FORMAT_VERSION : u32 = 28 ;
12
12
13
13
/// A `Crate` is the root of the emitted JSON blob. It contains all type/documentation information
14
14
/// about the language items in the local crate, as well as info about external items to allow
@@ -634,6 +634,7 @@ pub struct FnDecl {
634
634
pub struct Trait {
635
635
pub is_auto : bool ,
636
636
pub is_unsafe : bool ,
637
+ pub is_object_safe : bool ,
637
638
pub items : Vec < Id > ,
638
639
pub generics : Generics ,
639
640
pub bounds : Vec < GenericBound > ,
You can’t perform that action at this time.
0 commit comments