Skip to content

Commit 61c7e7e

Browse files
committed
Bump version
1 parent 7c1144d commit 61c7e7e

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.6
4+
5+
- Address [dtolnay/proc-macro2#497](https://github.com/dtolnay/proc-macro2/pull/497). This fix allows `cast_checks`'s [`CAST_CHECKS_LOG`](https://github.com/trailofbits/cast_checks?tab=readme-ov-file#cast_checks_log) feature to work with recent nightly compilers. ([7c1144d](https://github.com/trailofbits/cast_checks/commit/7c1144d6cd932eff70ef770b7dcd41a00d26bffd))
6+
37
## 0.1.5
48

59
- Simplify README.md ([#37](https://github.com/trailofbits/cast_checks/pull/37))

cast_checks/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "cast_checks"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "A procedural macro to check for invalid casts"
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/trailofbits/cast_checks"
99

1010
[dependencies]
11-
cast_checks_convert = { version = "=0.1.5", path = "../convert" }
12-
cast_checks_macro = { version = "=0.1.5", path = "../macro" }
11+
cast_checks_convert = { version = "=0.1.6", path = "../convert" }
12+
cast_checks_macro = { version = "=0.1.6", path = "../macro" }
1313

1414
[dev-dependencies]
1515
assert_cmd = "2.0"

convert/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cast_checks_convert"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "cast_checks_convert"
66
edition = "2021"

inner_attribute_example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inner_attribute_example"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55
publish = false
66

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 = "cast_checks_macro"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Samuel E. Moelius III <[email protected]>"]
55
description = "cast_checks_macro"
66
edition = "2021"

0 commit comments

Comments
 (0)