diff --git a/Cargo.lock b/Cargo.lock index c091696..9ab8161 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "typed_floats" -version = "0.2.4" +version = "0.3.0" dependencies = [ "checked-float", "ordered-float", @@ -103,7 +103,7 @@ dependencies = [ [[package]] name = "typed_floats_macros" -version = "0.2.4" +version = "0.3.0" dependencies = [ "proc-macro2", "quote", diff --git a/typed_floats/Cargo.toml b/typed_floats/Cargo.toml index 270758a..f059df0 100644 --- a/typed_floats/Cargo.toml +++ b/typed_floats/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "typed_floats" readme = "./README.md" repository = "https://github.com/tdelmas/typed_floats" -version = "0.2.4" +version = "0.3.0" rust-version = "1.56" [features] @@ -24,7 +24,7 @@ default = [] [dependencies] thiserror = "1.0" -typed_floats_macros = {version = "=0.2.4", path = "../typed_floats_macros"} +typed_floats_macros = {version = "=0.3.0", path = "../typed_floats_macros"} [dev-dependencies] # For examples diff --git a/typed_floats_macros/Cargo.toml b/typed_floats_macros/Cargo.toml index 2cb2727..f4f6a0d 100644 --- a/typed_floats_macros/Cargo.toml +++ b/typed_floats_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typed_floats_macros" -version = "0.2.4" +version = "0.3.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Crate only used to generate the `typed_floats` crate."