Skip to content

Commit

Permalink
Merge pull request #356 from DaniPopes/fix-docsrs
Browse files Browse the repository at this point in the history
docs: fix docs.rs build
  • Loading branch information
prestwich authored Mar 1, 2024
2 parents f7f043d + 7ece017 commit f0782ee
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 17 deletions.
43 changes: 27 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- docs.rs build ([#356])

[#356]: https://github.com/recmo/uint/pull/356

## [1.12.0] - 2024-02-27

- Overflow check in `overflowing_shr` implementation ([#347])
### Added

- Wrap the `uint!` macro to allow usage without needing `uint` import ([#350])

[#347]: https://github.com/recmo/uint/pulls/347
[#350]: https://github.com/recmo/uint/pulls/350
### Fixed

- Overflow check in `overflowing_shr` implementation ([#347])

[#347]: https://github.com/recmo/uint/pull/347
[#350]: https://github.com/recmo/uint/pull/350

## [1.11.1] - 2023-11-18

### Fixed

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

[#343]: https://github.com/recmo/uint/pulls/343
[#343]: https://github.com/recmo/uint/pull/343

### Added

- Enable `SSZ` ([#344])

[#344]: https://github.com/recmo/uint/pulls/344
[#344]: https://github.com/recmo/uint/pull/344

## [1.11.0] - 2023-10-31

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

[#292]: https://github.com/recmo/uint/pulls/292
[#296]: https://github.com/recmo/uint/pulls/296
[#298]: https://github.com/recmo/uint/pulls/298
[#310]: https://github.com/recmo/uint/pulls/310
[#316]: https://github.com/recmo/uint/pulls/316
[#324]: https://github.com/recmo/uint/pulls/324
[#329]: https://github.com/recmo/uint/pulls/329
[#335]: https://github.com/recmo/uint/pulls/335
[#292]: https://github.com/recmo/uint/pull/292
[#296]: https://github.com/recmo/uint/pull/296
[#298]: https://github.com/recmo/uint/pull/298
[#310]: https://github.com/recmo/uint/pull/310
[#316]: https://github.com/recmo/uint/pull/316
[#324]: https://github.com/recmo/uint/pull/324
[#329]: https://github.com/recmo/uint/pull/329
[#335]: https://github.com/recmo/uint/pull/335

## [1.10.1] - 2023-07-30

### Fixed

- Fixed some support features ([#289])

[#289]: https://github.com/recmo/uint/pulls/289
[#289]: https://github.com/recmo/uint/pull/289

## [1.10.0] - 2023-07-30

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

[#274]: https://github.com/recmo/uint/pulls/274
[#277]: https://github.com/recmo/uint/pulls/277
[#274]: https://github.com/recmo/uint/pull/274
[#277]: https://github.com/recmo/uint/pull/277

## [1.9.0] - 2023-07-25

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Unsigned integer type with const-generic bit length"
version = "1.12.0"
keywords = ["uint"]
categories = ["mathematics"]
include = ["src/**/*.rs", "README.md"]
include = [".cargo/", "src/", "README.md"]
readme = "README.md"

edition.workspace = true
Expand Down

0 comments on commit f0782ee

Please sign in to comment.