Skip to content

Commit 8d65286

Browse files
committed
v0.29.1
1 parent 6018b19 commit 8d65286

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
<a name="v0.29.1"></a>
2+
# [v0.29.1](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.29.1) - 2024-08-13
3+
4+
**Documentation Improvements**: Typo fixes ([rust#128903](https://github.com/rust-lang/rust/pull/128903), [#29](https://github.com/aDotInTheVoid/rustdoc-types/pull/29)).
5+
6+
- Format Version: 33
7+
- Upstream Commit: [`b735547025dad853829a7dbf6b6697090e3f657c`](https://github.com/rust-lang/rust/commit/b735547025dad853829a7dbf6b6697090e3f657c)
8+
- Diff: [v0.29.0...v0.29.1](https://github.com/aDotInTheVoid/rustdoc-types/compare/v0.29.0...v0.29.1)
9+
110
<a name="v0.29.0"></a>
211
# [v0.29.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.29.0) - 2024-08-01
312

13+
> [!NOTE]
14+
> Due to a mistake, this version was never published to crates.io. Users can use `v0.29.1` instead.
15+
416
**Breaking Change**: Removed `OpaqueTy`, `ItemKind::OpaqueTy` and `ItemEnum::OpaqueTy`. These were only generated with rarely used nightly features, so almost all documents will be uneffected ([rust#127276](https://github.com/rust-lang/rust/pull/127276)).
517

618
- Format Version: 33
@@ -10,7 +22,7 @@
1022
<a name="v0.28.1"></a>
1123
# [v0.28.1](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.28.1) - 2024-08-01
1224

13-
**Documentation Improvements**: The libray is now (almost) entirely documented ([rust#127290](https://github.com/rust-lang/rust/pull/127290))!
25+
**Documentation Improvements**: The library is now (almost) entirely documented ([rust#127290](https://github.com/rust-lang/rust/pull/127290))!
1426

1527
- Format Version: 32
1628
- Upstream Commit: [`47b76d8d939be6085e9b1f6fc1a4b959346754a6`](https://github.com/rust-lang/rust/commit/47b76d8d939be6085e9b1f6fc1a4b959346754a6)
@@ -31,7 +43,7 @@
3143
**Breaking Change**: `WherePredicate::RegionPredicate` has been renamed to
3244
`LifetimePredicate`, to avoid compiler-internal terminology. The `bounds` field
3345
has been renamed to `outlives`, and changed from `Vec<GenericBound>` to
34-
`Vec<String>`, becuase the only bound that lifetimes can have is that they
46+
`Vec<String>`, because the only bound that lifetimes can have is that they
3547
outlife other lifetimes
3648
([rust#127289](https://github.com/rust-lang/rust/pull/127289)).
3749

@@ -75,7 +87,7 @@ hand-written information in the changelog, and to make the release process easie
7587
# [v0.23.0](https://github.com/aDotInTheVoid/rustdoc-types/releases/tag/v0.23.0) - 2023-08-23
7688

7789
**Breaking Change**: `Typedef` has been renamed to `TypeAlias`, as this is what
78-
people (and the reference) generaly call these items. ([rust#115078](https://github.com/rust-lang/rust/pull/115078))
90+
people (and the reference) generally call these items. ([rust#115078](https://github.com/rust-lang/rust/pull/115078))
7991

8092
- Format Version: 27
8193
- Upstream Commit: [`c90a5b2019e5a862c8fb5ae39dcf6ad5f4c65b09`](https://github.com/rust-lang/rust/commit/c90a5b2019e5a862c8fb5ae39dcf6ad5f4c65b09)

COMMIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
73ac5e0c6e8e0e35229444caf5461c6c079122b4
1+
b735547025dad853829a7dbf6b6697090e3f657c

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.29.0"
3+
version = "0.29.1"
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
@@ -634,7 +634,7 @@ pub struct Discriminant {
634634
/// hexadecimal, and underscores), making it unsuitable to be machine
635635
/// interpreted.
636636
///
637-
/// In some cases, when the value is to complex, this may be `"{ _ }"`.
637+
/// In some cases, when the value is too complex, this may be `"{ _ }"`.
638638
/// When this occurs is unstable, and may change without notice.
639639
pub expr: String,
640640
/// The numerical value of the discriminant. Stored as a string due to

0 commit comments

Comments
 (0)