Skip to content

Commit 2e23981

Browse files
committed
Version to 0.4.1 for sqlite-bundled
Fixes #7
1 parent e7620da commit 2e23981

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

butane/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "butane"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["James Oakley <[email protected]>"]
55
edition = "2018"
66
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"]
2525

2626
[dependencies]
2727
butane_codegen = { path = "../butane_codegen", version = "0.4" }
28-
butane_core = { path = "../butane_core", version = "0.4" }
28+
butane_core = { path = "../butane_core", version = "0.4.1" }
2929

3030

3131
[dev-dependencies]

butane_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "butane_cli"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["James Oakley <[email protected]>"]
55
edition = "2018"
66
description = "The CLI for the Butane ORM"
@@ -18,7 +18,7 @@ sqlite-bundled = ["butane/sqlite-bundled"]
1818

1919
[dependencies]
2020
anyhow = "1.0"
21-
butane = { path="../butane", version="0.4", features=["default", "sqlite", "pg"] }
21+
butane = { path="../butane", version="0.4.1", features=["default", "sqlite", "pg"] }
2222
chrono = "0.4"
2323
clap = "2.33"
2424
quote = "1.0"

butane_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "butane_core"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["James Oakley <[email protected]>"]
55
edition = "2018"
66
description = "Internals for Butane. Do not use this crate directly -- use the butane crate."

0 commit comments

Comments
 (0)