Skip to content

Commit

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

## 0.1.4

- Handle boxed trait objects ([#23](https://github.com/trailofbits/cast_checks/pull/23))

## 0.1.3

- Ensure generated expressions parse as block expressions ([cd283d9](https://github.com/trailofbits/cast_checks/commit/cd283d9dc62346cb0538e35de9adfd2185e39772))
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.3"
version = "0.1.4"
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.3", path = "../convert" }
cast_checks_macro = { version = "=0.1.3", path = "../macro" }
cast_checks_convert = { version = "=0.1.4", path = "../convert" }
cast_checks_macro = { version = "=0.1.4", 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.3"
version = "0.1.4"
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.3"
version = "0.1.4"
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.3"
version = "0.1.4"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "cast_checks_macro"
edition = "2021"
Expand Down

0 comments on commit 293a3cc

Please sign in to comment.