Skip to content

Commit b642aa3

Browse files
authored
Merge pull request #288 from DaniPopes/release-1-10-0
chore: release 1.10.0
2 parents aaa37d2 + 6e3a373 commit b642aa3

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

CHANGELOG.md

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

1010
## [Unreleased]
1111

12+
## [1.10.0] - 2023-07-30
13+
1214
### Added
1315

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

244246
<!-- links to version -->
245247

246-
[unreleased]: https://github.com/recmo/uint/compare/v1.8.0...HEAD
247-
[1.8.0]: https://github.com/recmo/uint/releases/tag/v1.6.0
248+
[unreleased]: https://github.com/recmo/uint/compare/v1.10.0...HEAD
249+
[1.10.0]: https://github.com/recmo/uint/releases/tag/v1.10.0
250+
[1.9.0]: https://github.com/recmo/uint/releases/tag/v1.9.0
251+
[1.8.0]: https://github.com/recmo/uint/releases/tag/v1.8.0
252+
[1.7.0]: https://github.com/recmo/uint/releases/tag/v1.7.0
248253
[1.6.0]: https://github.com/recmo/uint/releases/tag/v1.6.0
249254
[1.5.1]: https://github.com/recmo/uint/releases/tag/v1.5.1
250255
[1.5.0]: https://github.com/recmo/uint/releases/tag/v1.5.0

Cargo.toml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruint"
33
description = "Unsigned integer type with const-generic bit length"
4-
version = "1.9.0"
4+
version = "1.10.0"
55
keywords = ["uint"]
66
categories = ["mathematics"]
77
exclude = ["benches/", "proptest-regressions/", "tests/"]
@@ -30,18 +30,14 @@ license = "MIT"
3030
homepage = "https://github.com/recmo/uint"
3131
repository = "https://github.com/recmo/uint"
3232

33-
[workspace.dependencies]
34-
ruint = { version = "1.9.0", path = "." }
35-
ruint-macro = { version = "1.1.0", path = "ruint-macro" }
36-
3733
[[bench]]
3834
name = "bench_uint"
3935
harness = false
4036
path = "benches/bench.rs"
4137
required-features = ["std"]
4238

4339
[dependencies]
44-
ruint-macro.workspace = true
40+
ruint-macro = { version = "1.1.0", path = "ruint-macro" }
4541

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

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

7773
[dev-dependencies]
78-
ruint = { workspace = true, features = ["arbitrary", "proptest"] }
74+
ruint = { path = ".", features = ["arbitrary", "proptest"] }
7975

8076
ark-bn254-03 = { version = "0.3.0", package = "ark-bn254" }
8177
ark-bn254-04 = { version = "0.4.0", package = "ark-bn254" }

0 commit comments

Comments
 (0)