diff --git a/Cargo.lock b/Cargo.lock index efcee873..416a6668 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,7 +113,7 @@ dependencies = [ [[package]] name = "butane" -version = "0.4.1" +version = "0.4.2" dependencies = [ "butane_codegen", "butane_core", @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "butane_core" -version = "0.4.1" +version = "0.4.2" dependencies = [ "bytes", "cfg-if", diff --git a/butane/Cargo.toml b/butane/Cargo.toml index 8e361130..9c097e42 100644 --- a/butane/Cargo.toml +++ b/butane/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "butane" -version = "0.4.1" +version = "0.4.2" authors = ["James Oakley "] edition = "2018" description = "An ORM with a focus on simplicity and on writing Rust, not SQL." @@ -25,7 +25,7 @@ uuid = ["butane_core/uuid", "butane_codegen/uuid"] [dependencies] butane_codegen = { path = "../butane_codegen", version = "0.4" } -butane_core = { path = "../butane_core", version = "0.4.1" } +butane_core = { path = "../butane_core", version = "0.4.2" } [dev-dependencies] diff --git a/butane_core/Cargo.toml b/butane_core/Cargo.toml index 4e3372f5..adbcad7b 100644 --- a/butane_core/Cargo.toml +++ b/butane_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "butane_core" -version = "0.4.1" +version = "0.4.2" authors = ["James Oakley "] edition = "2018" description = "Internals for Butane. Do not use this crate directly -- use the butane crate."