Skip to content

Commit 1dfc30b

Browse files
committed
Bump version
1 parent 6c62000 commit 1dfc30b

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

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

3+
## 0.1.3
4+
5+
- Ensure generated expressions parse as block expressions ([cd283d9](https://github.com/trailofbits/cast_checks/commit/cd283d9dc62346cb0538e35de9adfd2185e39772))
6+
- Prevent "unnecessary parentheses" warnings in generated expressions ([44e6bea](https://github.com/trailofbits/cast_checks/commit/44e6bea46ca65bedcaedae22e00df6ad46fdb054))
7+
38
## 0.1.2
49

510
- Improve error and warning messages ([#6](https://github.com/trailofbits/cast_checks/pull/6))

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.2"
3+
version = "0.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
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.2", path = "../convert" }
12-
cast_checks_macro = { version = "=0.1.2", path = "../macro" }
11+
cast_checks_convert = { version = "=0.1.3", path = "../convert" }
12+
cast_checks_macro = { version = "=0.1.3", 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.2"
3+
version = "0.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
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.2"
3+
version = "0.1.3"
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.2"
3+
version = "0.1.3"
44
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
55
description = "cast_checks_macro"
66
edition = "2021"

0 commit comments

Comments
 (0)