Skip to content

Commit

Permalink
Bumped version (#1087)
Browse files Browse the repository at this point in the history
Co-authored-by: Evance Soumaoro <[email protected]>
  • Loading branch information
fulmicoton and evanxg852000 authored Jan 12, 2022
1 parent ddf55d4 commit 3ab1469
Show file tree
Hide file tree
Showing 18 changed files with 72 additions and 71 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

members = [
"quickwit-actors",
"quickwit-common",
"quickwit-cli",
"quickwit-cluster",
"quickwit-config",
Expand Down
4 changes: 2 additions & 2 deletions quickwit-actors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-actors"
version = "0.1.0"
version = "0.2.0"
authors = ["Quickwit, Inc. <[email protected]>"]
edition = "2021"
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
Expand All @@ -20,4 +20,4 @@ flume = "0.10"
futures = "0.3"
tracing = "0.1.29"
thiserror = "1"
quickwit-common = {path="../quickwit-common", version="0.1"}
quickwit-common = {path="../quickwit-common", version = "0.2"}
28 changes: 14 additions & 14 deletions quickwit-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-cli"
version = "0.1.0"
version = "0.2.0"
authors = ["Quickwit, Inc. <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand All @@ -23,19 +23,19 @@ async-trait = "0.1"
anyhow = "1"
byte-unit = { version = "4", default-features = false, features = ["serde"] }
clap = { version = "=3.0.0-beta.5", features = ["yaml"] }
quickwit-actors = { version = "0.1.0", path = "../quickwit-actors" }
quickwit-core = { version = "0.1.0", path = "../quickwit-core" }
quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" }
quickwit-common = { version = "0.1.0", path = "../quickwit-common" }
quickwit-config = { version = "0.1.0", path = "../quickwit-config" }
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" }
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" }
quickwit-search = { version = "0.1", path = "../quickwit-search" }
quickwit-serve = { version = "0.1", path = "../quickwit-serve" }
quickwit-telemetry = { version = "0.1", path = "../quickwit-telemetry" }
quickwit-proto = { version = "0.1", path = "../quickwit-proto" }
quickwit-actors = { version = "0.2.0", path = "../quickwit-actors" }
quickwit-core = { version = "0.2.0", path = "../quickwit-core" }
quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" }
quickwit-common = { version = "0.2.0", path = "../quickwit-common" }
quickwit-config = { version = "0.2.0", path = "../quickwit-config" }
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" }
quickwit-search = { version = "0.2", path = "../quickwit-search" }
quickwit-serve = { version = "0.2", path = "../quickwit-serve" }
quickwit-telemetry = { version = "0.2", path = "../quickwit-telemetry" }
quickwit-proto = { version = "0.2", path = "../quickwit-proto" }
tabled = "0.4"
tracing = "0.1.29"
tracing-subscriber = {version="0.3", features=["time", "std", "env-filter"]}
Expand Down
8 changes: 4 additions & 4 deletions quickwit-cluster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-cluster"
version = "0.1.0"
version = "0.2.0"
authors = ['Quickwit, Inc. <[email protected]>']
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand All @@ -13,8 +13,8 @@ documentation = "https://quickwit.io/docs/"
anyhow = "1.0"
async-trait = "0.1"
flume = "0.10"
quickwit-common = { version = "0.1.0", path = "../quickwit-common"}
quickwit-swim = { version = "0.1", path = "../quickwit-swim" }
quickwit-common = { version = "0.2.0", path = "../quickwit-common"}
quickwit-swim = { version = "0.2", path = "../quickwit-swim" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
Expand All @@ -24,7 +24,7 @@ tonic = "0.6"
tracing = "0.1.29"
uuid = "0.8"

quickwit-proto = { version = "0.1.0", path = "../quickwit-proto"}
quickwit-proto = { version = "0.2.0", path = "../quickwit-proto"}

[dev-dependencies]
itertools = '0.10'
Expand Down
2 changes: 1 addition & 1 deletion quickwit-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-common"
version = "0.1.0"
version = "0.2.0"
authors = ['Quickwit, inc <[email protected]>']
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand Down
6 changes: 3 additions & 3 deletions quickwit-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-config"
version = "0.1.0"
version = "0.2.0"
authors = ["Quickwit, Inc. <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial license, contact [email protected]
Expand All @@ -14,8 +14,8 @@ anyhow = "1"
byte-unit = { version = "4", default-features = false, features = ["serde"] }
json_comments = "0.2"
once_cell = "1.8.0"
quickwit-common = { version = "0.1.0", path = "../quickwit-common" }
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
quickwit-common = { version = "0.2.0", path = "../quickwit-common" }
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
Expand Down
14 changes: 7 additions & 7 deletions quickwit-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-core"
version = "0.1.0"
version = "0.2.0"
authors = ["Quickwit, Inc. <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand All @@ -15,12 +15,12 @@ anyhow = "1.0"
async-trait = "0.1"
byte-unit = { version = "4", default-features = false, features = ["serde"] }
quickwit-actors = {path="../quickwit-actors"}
quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" }
quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" }
quickwit-common = {path="../quickwit-common"}
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" }
quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" }
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" }
quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.6", features = ["full"] }
rand = "0.8"
Expand All @@ -36,4 +36,4 @@ tempfile = '3'

[dev-dependencies]
mockall = "0.11"
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore", features=["testsuite"]}
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore", features=["testsuite"]}
4 changes: 2 additions & 2 deletions quickwit-directories/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'quickwit-directories'
version = '0.1.0'
version = "0.2.0"
authors = ['Quickwit, Inc. <[email protected]>']
edition = '2021'
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
Expand All @@ -17,7 +17,7 @@ serde = "1"
serde_cbor = "0.11"
serde_json = "1"
tantivy = { git= "https://github.com/quickwit-inc/tantivy", rev="48c47f0d3", default-features=false, features = ["mmap", "lz4-compression"] }
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
uuid = "0.8"
once_cell = "1"
tokio = { version = "1", features = ["sync"] }
Expand Down
2 changes: 1 addition & 1 deletion quickwit-doc-mapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-doc-mapper"
version = "0.1.0"
version = "0.2.0"
authors = ["Quickwit, Inc. <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand Down
6 changes: 3 additions & 3 deletions quickwit-indexing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'quickwit-indexing'
version = '0.1.0'
version = "0.2.0"
authors = ['Quickwit, Inc. <[email protected]>']
edition = '2021'
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
Expand All @@ -25,7 +25,7 @@ quickwit-config = {path = "../quickwit-config" }
quickwit-directories = {path = "../quickwit-directories"}
quickwit-doc-mapper = {path = "../quickwit-doc-mapper", features=["testsuite"]}
quickwit-metastore = {path = "../quickwit-metastore" }
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
rdkafka = { version = "0.28", default-features = false, features = ["tokio", "libz", "ssl", "cmake-build"], optional = true }
openssl = { version = "0.10.36", default-features = false, optional = true}
libz-sys = {version = "1.1.3", optional = true}
Expand Down Expand Up @@ -54,7 +54,7 @@ kinesis-external-service = []
bytes = "1"
mockall = "0.11"
proptest = "1"
quickwit-common = {path="../quickwit-common", version="0.1"}
quickwit-common = {path="../quickwit-common", version="0.2"}
quickwit-metastore = {path = "../quickwit-metastore", features=["testsuite"]}
quickwit-storage = {path = "../quickwit-storage", features=["testsuite"]}
rand = '0.8'
Expand Down
14 changes: 7 additions & 7 deletions quickwit-metastore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickwit-metastore"
version = "0.1.0"
version = "0.2.0"
authors = ['Quickwit, Inc. <[email protected]>']
edition = "2021"
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
Expand Down Expand Up @@ -28,10 +28,10 @@ thiserror = "1.0"
tokio = { version = "1.6", features = ["full"]}
tracing = "0.1.29"

quickwit-common = { version = "0.1.0", path = "../quickwit-common" }
quickwit-config = { version = "0.1.0", path = "../quickwit-config" }
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
quickwit-common = { version = "0.2.0", path = "../quickwit-common" }
quickwit-config = { version = "0.2.0", path = "../quickwit-config" }
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }

[dependencies.mockall]
version = "0.11"
Expand All @@ -44,8 +44,8 @@ optional = true
[dev-dependencies]
dotenv = "0.15"
mockall = "0.11"
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage", features=["testsuite"]}
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper", features=["testsuite"] }
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage", features=["testsuite"]}
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper", features=["testsuite"] }
tempfile = '3'
futures = '0.3'
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion quickwit-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'quickwit-proto'
version = '0.1.0'
version = "0.2.0"
authors = ['Quickwit, inc <[email protected]>']
edition = '2021'
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
Expand Down
Loading

0 comments on commit 3ab1469

Please sign in to comment.