Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Jul 25, 2023
1 parent 6c62000 commit 1dfc30b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.1.3

- Ensure generated expressions parse as block expressions ([cd283d9](https://github.com/trailofbits/cast_checks/commit/cd283d9dc62346cb0538e35de9adfd2185e39772))
- Prevent "unnecessary parentheses" warnings in generated expressions ([44e6bea](https://github.com/trailofbits/cast_checks/commit/44e6bea46ca65bedcaedae22e00df6ad46fdb054))

## 0.1.2

- Improve error and warning messages ([#6](https://github.com/trailofbits/cast_checks/pull/6))
Expand Down
6 changes: 3 additions & 3 deletions cast_checks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "cast_checks"
version = "0.1.2"
version = "0.1.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A procedural macro to check for invalid casts"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/trailofbits/cast_checks"

[dependencies]
cast_checks_convert = { version = "=0.1.2", path = "../convert" }
cast_checks_macro = { version = "=0.1.2", path = "../macro" }
cast_checks_convert = { version = "=0.1.3", path = "../convert" }
cast_checks_macro = { version = "=0.1.3", path = "../macro" }

[dev-dependencies]
assert_cmd = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion convert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cast_checks_convert"
version = "0.1.2"
version = "0.1.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "cast_checks_convert"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion inner_attribute_example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inner_attribute_example"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cast_checks_macro"
version = "0.1.2"
version = "0.1.3"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "cast_checks_macro"
edition = "2021"
Expand Down

0 comments on commit 1dfc30b

Please sign in to comment.