Skip to content

Commit

Permalink
Version to 0.4.1 for sqlite-bundled
Browse files Browse the repository at this point in the history
Fixes #7
  • Loading branch information
Electron100 committed Jul 20, 2021
1 parent e7620da commit 2e23981
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions butane/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "butane"
version = "0.4.0"
version = "0.4.1"
authors = ["James Oakley <[email protected]>"]
edition = "2018"
description = "An ORM with a focus on simplicity and on writing Rust, not SQL."
Expand All @@ -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" }
butane_core = { path = "../butane_core", version = "0.4.1" }


[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions butane_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "butane_cli"
version = "0.4.0"
version = "0.4.1"
authors = ["James Oakley <[email protected]>"]
edition = "2018"
description = "The CLI for the Butane ORM"
Expand All @@ -18,7 +18,7 @@ sqlite-bundled = ["butane/sqlite-bundled"]

[dependencies]
anyhow = "1.0"
butane = { path="../butane", version="0.4", features=["default", "sqlite", "pg"] }
butane = { path="../butane", version="0.4.1", features=["default", "sqlite", "pg"] }
chrono = "0.4"
clap = "2.33"
quote = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion butane_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "butane_core"
version = "0.4.0"
version = "0.4.1"
authors = ["James Oakley <[email protected]>"]
edition = "2018"
description = "Internals for Butane. Do not use this crate directly -- use the butane crate."
Expand Down

0 comments on commit 2e23981

Please sign in to comment.