Skip to content

Commit f0782ee

Browse files
authored
Merge pull request #356 from DaniPopes/fix-docsrs
docs: fix docs.rs build
2 parents f7f043d + 7ece017 commit f0782ee

File tree

2 files changed

+28
-17
lines changed

2 files changed

+28
-17
lines changed

CHANGELOG.md

+27-16
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- docs.rs build ([#356])
15+
16+
[#356]: https://github.com/recmo/uint/pull/356
17+
1218
## [1.12.0] - 2024-02-27
1319

14-
- Overflow check in `overflowing_shr` implementation ([#347])
20+
### Added
21+
1522
- Wrap the `uint!` macro to allow usage without needing `uint` import ([#350])
1623

17-
[#347]: https://github.com/recmo/uint/pulls/347
18-
[#350]: https://github.com/recmo/uint/pulls/350
24+
### Fixed
25+
26+
- Overflow check in `overflowing_shr` implementation ([#347])
27+
28+
[#347]: https://github.com/recmo/uint/pull/347
29+
[#350]: https://github.com/recmo/uint/pull/350
1930

2031
## [1.11.1] - 2023-11-18
2132

2233
### Fixed
2334

2435
- Typo in `Shr` implementation ([#343])
2536

26-
[#343]: https://github.com/recmo/uint/pulls/343
37+
[#343]: https://github.com/recmo/uint/pull/343
2738

2839
### Added
2940

3041
- Enable `SSZ` ([#344])
3142

32-
[#344]: https://github.com/recmo/uint/pulls/344
43+
[#344]: https://github.com/recmo/uint/pull/344
3344

3445
## [1.11.0] - 2023-10-31
3546

@@ -48,22 +59,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4859
- Restricted RLP decoding to match the RLP spec and disallow leading zeros ([#335])
4960
- `leading_ones` failed for non-aligned sizes.
5061

51-
[#292]: https://github.com/recmo/uint/pulls/292
52-
[#296]: https://github.com/recmo/uint/pulls/296
53-
[#298]: https://github.com/recmo/uint/pulls/298
54-
[#310]: https://github.com/recmo/uint/pulls/310
55-
[#316]: https://github.com/recmo/uint/pulls/316
56-
[#324]: https://github.com/recmo/uint/pulls/324
57-
[#329]: https://github.com/recmo/uint/pulls/329
58-
[#335]: https://github.com/recmo/uint/pulls/335
62+
[#292]: https://github.com/recmo/uint/pull/292
63+
[#296]: https://github.com/recmo/uint/pull/296
64+
[#298]: https://github.com/recmo/uint/pull/298
65+
[#310]: https://github.com/recmo/uint/pull/310
66+
[#316]: https://github.com/recmo/uint/pull/316
67+
[#324]: https://github.com/recmo/uint/pull/324
68+
[#329]: https://github.com/recmo/uint/pull/329
69+
[#335]: https://github.com/recmo/uint/pull/335
5970

6071
## [1.10.1] - 2023-07-30
6172

6273
### Fixed
6374

6475
- Fixed some support features ([#289])
6576

66-
[#289]: https://github.com/recmo/uint/pulls/289
77+
[#289]: https://github.com/recmo/uint/pull/289
6778

6879
## [1.10.0] - 2023-07-30
6980

@@ -72,8 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7283
- Support for `no_std` environments ([#274])
7384
- `alloc` feature ([#277])
7485

75-
[#274]: https://github.com/recmo/uint/pulls/274
76-
[#277]: https://github.com/recmo/uint/pulls/277
86+
[#274]: https://github.com/recmo/uint/pull/274
87+
[#277]: https://github.com/recmo/uint/pull/277
7788

7889
## [1.9.0] - 2023-07-25
7990

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Unsigned integer type with const-generic bit length"
44
version = "1.12.0"
55
keywords = ["uint"]
66
categories = ["mathematics"]
7-
include = ["src/**/*.rs", "README.md"]
7+
include = [".cargo/", "src/", "README.md"]
88
readme = "README.md"
99

1010
edition.workspace = true

0 commit comments

Comments
 (0)