Skip to content

Commit 3bc8659

Browse files
committed
0.2.0
1 parent 7e56513 commit 3bc8659

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multisql-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Kyran Gostelow <[email protected]>"]
55
edition = "2021"
66
description = "MultiSQL CLI"
@@ -10,7 +10,7 @@ repository = "https://github.com/KyGost/multisql-cli"
1010
[dependencies]
1111
dialoguer = "^0"
1212
indicatif = "^0"
13-
multisql = "0.1.3"
13+
multisql = "0.2.0"
1414
lazy_static = "^1"
1515
console = "^0"
1616
cli-table = "^0"

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ lazy_static! {
1919
fn main() {
2020
let mut connection_file_path = dirs::home_dir().unwrap();
2121
connection_file_path.push(".multisql-cli.yaml");
22-
22+
2323
let mut connection_file = OpenOptions::new()
2424
.read(true)
2525
.write(true)

0 commit comments

Comments
 (0)