chore: bump version
This commit is contained in:
parent
62283687a4
commit
0d9cd7af71
1 changed files with 15 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "migra-cli"
|
name = "migra-cli"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
|
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Simple SQL migration manager for your project"
|
description = "Simple SQL migration manager for your project"
|
||||||
|
@ -12,13 +12,6 @@ categories = ["accessibility", "database", "command-line-interface"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[[bin]]
|
|
||||||
name = "migra"
|
|
||||||
path = "src/main.rs"
|
|
||||||
|
|
||||||
[[test]]
|
|
||||||
name = "integration"
|
|
||||||
path = "tests/commands.rs"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
structopt = "0.3"
|
structopt = "0.3"
|
||||||
|
@ -28,9 +21,20 @@ chrono = "0.4"
|
||||||
postgres = "0.19"
|
postgres = "0.19"
|
||||||
dotenv = { version = "0.15", optional = true }
|
dotenv = { version = "0.15", optional = true }
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
|
||||||
|
[badges]
|
||||||
|
maintenance = { states = "actively-developed" }
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "migra"
|
||||||
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
[[test]]
|
||||||
|
name = "integration"
|
||||||
|
path = "tests/commands.rs"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_cmd = "1"
|
assert_cmd = "1"
|
||||||
predicates = "1"
|
predicates = "1"
|
||||||
|
|
||||||
[features]
|
|
||||||
default = []
|
|
||||||
|
|
Reference in a new issue