Skip to content

Commit

Permalink
Merge pull request #288 from DaniPopes/release-1-10-0
Browse files Browse the repository at this point in the history
chore: release 1.10.0
  • Loading branch information
prestwich authored Jul 30, 2023
2 parents aaa37d2 + 6e3a373 commit b642aa3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.10.0] - 2023-07-30

### Added

- Support for `no_std` environments ([#274])
Expand Down Expand Up @@ -243,8 +245,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- links to version -->

[unreleased]: https://github.com/recmo/uint/compare/v1.8.0...HEAD
[1.8.0]: https://github.com/recmo/uint/releases/tag/v1.6.0
[unreleased]: https://github.com/recmo/uint/compare/v1.10.0...HEAD
[1.10.0]: https://github.com/recmo/uint/releases/tag/v1.10.0
[1.9.0]: https://github.com/recmo/uint/releases/tag/v1.9.0
[1.8.0]: https://github.com/recmo/uint/releases/tag/v1.8.0
[1.7.0]: https://github.com/recmo/uint/releases/tag/v1.7.0
[1.6.0]: https://github.com/recmo/uint/releases/tag/v1.6.0
[1.5.1]: https://github.com/recmo/uint/releases/tag/v1.5.1
[1.5.0]: https://github.com/recmo/uint/releases/tag/v1.5.0
Expand Down
10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ruint"
description = "Unsigned integer type with const-generic bit length"
version = "1.9.0"
version = "1.10.0"
keywords = ["uint"]
categories = ["mathematics"]
exclude = ["benches/", "proptest-regressions/", "tests/"]
Expand Down Expand Up @@ -30,18 +30,14 @@ license = "MIT"
homepage = "https://github.com/recmo/uint"
repository = "https://github.com/recmo/uint"

[workspace.dependencies]
ruint = { version = "1.9.0", path = "." }
ruint-macro = { version = "1.1.0", path = "ruint-macro" }

[[bench]]
name = "bench_uint"
harness = false
path = "benches/bench.rs"
required-features = ["std"]

[dependencies]
ruint-macro.workspace = true
ruint-macro = { version = "1.1.0", path = "ruint-macro" }

thiserror = { version = "1.0", optional = true }

Expand Down Expand Up @@ -75,7 +71,7 @@ postgres-types = { version = "0.2", optional = true }
sqlx-core = { version = "0.7", optional = true }

[dev-dependencies]
ruint = { workspace = true, features = ["arbitrary", "proptest"] }
ruint = { path = ".", features = ["arbitrary", "proptest"] }

ark-bn254-03 = { version = "0.3.0", package = "ark-bn254" }
ark-bn254-04 = { version = "0.4.0", package = "ark-bn254" }
Expand Down

0 comments on commit b642aa3

Please sign in to comment.