Skip to content

Commit

Permalink
chore: release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 23, 2021
1 parent 4d07f09 commit ecb09d2
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quake"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
authors = ["Inherd Group <quake@inherd.org>"]
description = """
Expand All @@ -15,8 +15,8 @@ autoexamples = true
keywords = ["knowledge", "dashboard"]

[dependencies]
quake_core = { path = "quake_core", version = "0.2.0" }
quake_tui = { path = "quake_tui", version = "0.2.0" }
quake_core = { path = "quake_core", version = "0.3.0" }
quake_tui = { path = "quake_tui", version = "0.3.0" }

# cli parser
clap = { version = "3.0.0-beta.5", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion quake_analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quake_core = { path = "../quake_core", version = "0.2.0" }
quake_core = { path = "../quake_core", version = "0.3.0" }

jieba-rs = { version = "0.6", features = ["tfidf", "textrank"] }

Expand Down
2 changes: 1 addition & 1 deletion quake_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quake_core"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
authors = ["Phodal HUANG <h@phodal.com>"]
description = """
Expand Down
6 changes: 3 additions & 3 deletions quake_importer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quake_core = { path = "../quake_core", version = "0.2.0" }
quake_core = { path = "../quake_core", version = "0.3.0" }

clap = "3.0.0-beta.5"

quake_microsoft_todo = "0.1.1"

serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

[dependencies.rusqlite]
version = "0.25.3"
Expand Down
4 changes: 2 additions & 2 deletions quake_tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quake_tui"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
authors = ["Inherd Group <quake@inherd.org>"]
description = """
Expand All @@ -17,7 +17,7 @@ keywords = ["knowledge", "dashboard"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quake_core = { path = "../quake_core", version = "0.2.0" }
quake_core = { path = "../quake_core", version = "0.3.0" }

crossterm = "0.22"
tui = { version = "0.16", default-features = false, features = ['crossterm'] }
Expand Down
4 changes: 2 additions & 2 deletions quake_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quake_wasm"
version = "0.1.0"
version = "0.3.0"
edition = "2021"
authors = ["Inherd Group <quake@inherd.org>"]
description = """
Expand All @@ -13,7 +13,7 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quake_core = { path = "../quake_core", version = "0.2.0" }
quake_core = { path = "../quake_core", version = "0.3.0" }
wasm-bindgen = "0.2"

serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub mod usecases;
const VERSION: &str = env!("CARGO_PKG_VERSION");

#[derive(Parser)]
#[clap(version = "0.1.2", author = "Inherd <quake@inherd.org>")]
#[clap(version = "0.3.0", author = "Inherd <quake@inherd.org>")]
pub struct Opts {
#[clap(subcommand)]
cmd: SubCommand,
Expand Down

0 comments on commit ecb09d2

Please sign in to comment.