Skip to content

Commit ea55d6d

Browse files
committed
Bump to 0.6.0
1 parent a9d527e commit ea55d6d

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "bounded-integer"
3-
version = "0.5.8"
3+
version = "0.6.0"
44
description = "Bounded integers"
5-
keywords = ["bounded", "integer", "macro", "refinement"]
5+
keywords = ["bounded", "integer", "macro", "refinement", "modular"]
66
license = "ISC"
77
repository = "https://github.com/Kestrer/bounded-integer"
88
readme = "README.md"
99
edition = "2024"
1010

1111
[dependencies]
12-
bounded-integer-macro = { path = "./macro", version = "=0.5.8", optional = true }
12+
bounded-integer-macro = { path = "./macro", version = "=0.6.0", optional = true }
1313

1414
arbitrary1 = { package = "arbitrary", version = "1.0.2", optional = true }
1515
bytemuck1 = { package = "bytemuck", version = "1.7.2", optional = true }

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bounded-integer-macro"
3-
version = "0.5.8"
3+
version = "0.6.0"
44
description = "Proc macro for `bounded-integer`. Do not use directly."
55
keywords = ["bounded", "integer", "macro", "refinement"]
66
license = "ISC"

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@
101101
#![cfg_attr(feature = "__doc", feature(doc_auto_cfg))]
102102
#![no_std]
103103

104-
// TODO: TryFrom and TryInto
105-
106104
#[cfg(feature = "std")]
107105
extern crate std;
108106

0 commit comments

Comments
 (0)