Skip to content

Commit 3ab1469

Browse files
Bumped version (#1087)
Co-authored-by: Evance Soumaoro <[email protected]>
1 parent ddf55d4 commit 3ab1469

File tree

18 files changed

+72
-71
lines changed

18 files changed

+72
-71
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
members = [
44
"quickwit-actors",
5+
"quickwit-common",
56
"quickwit-cli",
67
"quickwit-cluster",
78
"quickwit-config",

quickwit-actors/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-actors"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Quickwit, Inc. <[email protected]>"]
55
edition = "2021"
66
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
@@ -20,4 +20,4 @@ flume = "0.10"
2020
futures = "0.3"
2121
tracing = "0.1.29"
2222
thiserror = "1"
23-
quickwit-common = {path="../quickwit-common", version="0.1"}
23+
quickwit-common = {path="../quickwit-common", version = "0.2"}

quickwit-cli/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Quickwit, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
@@ -23,19 +23,19 @@ async-trait = "0.1"
2323
anyhow = "1"
2424
byte-unit = { version = "4", default-features = false, features = ["serde"] }
2525
clap = { version = "=3.0.0-beta.5", features = ["yaml"] }
26-
quickwit-actors = { version = "0.1.0", path = "../quickwit-actors" }
27-
quickwit-core = { version = "0.1.0", path = "../quickwit-core" }
28-
quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" }
29-
quickwit-common = { version = "0.1.0", path = "../quickwit-common" }
30-
quickwit-config = { version = "0.1.0", path = "../quickwit-config" }
31-
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" }
32-
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
33-
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
34-
quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" }
35-
quickwit-search = { version = "0.1", path = "../quickwit-search" }
36-
quickwit-serve = { version = "0.1", path = "../quickwit-serve" }
37-
quickwit-telemetry = { version = "0.1", path = "../quickwit-telemetry" }
38-
quickwit-proto = { version = "0.1", path = "../quickwit-proto" }
26+
quickwit-actors = { version = "0.2.0", path = "../quickwit-actors" }
27+
quickwit-core = { version = "0.2.0", path = "../quickwit-core" }
28+
quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" }
29+
quickwit-common = { version = "0.2.0", path = "../quickwit-common" }
30+
quickwit-config = { version = "0.2.0", path = "../quickwit-config" }
31+
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" }
32+
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
33+
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
34+
quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" }
35+
quickwit-search = { version = "0.2", path = "../quickwit-search" }
36+
quickwit-serve = { version = "0.2", path = "../quickwit-serve" }
37+
quickwit-telemetry = { version = "0.2", path = "../quickwit-telemetry" }
38+
quickwit-proto = { version = "0.2", path = "../quickwit-proto" }
3939
tabled = "0.4"
4040
tracing = "0.1.29"
4141
tracing-subscriber = {version="0.3", features=["time", "std", "env-filter"]}

quickwit-cluster/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-cluster"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ['Quickwit, Inc. <[email protected]>']
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
@@ -13,8 +13,8 @@ documentation = "https://quickwit.io/docs/"
1313
anyhow = "1.0"
1414
async-trait = "0.1"
1515
flume = "0.10"
16-
quickwit-common = { version = "0.1.0", path = "../quickwit-common"}
17-
quickwit-swim = { version = "0.1", path = "../quickwit-swim" }
16+
quickwit-common = { version = "0.2.0", path = "../quickwit-common"}
17+
quickwit-swim = { version = "0.2", path = "../quickwit-swim" }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"
2020
thiserror = "1.0"
@@ -24,7 +24,7 @@ tonic = "0.6"
2424
tracing = "0.1.29"
2525
uuid = "0.8"
2626

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

2929
[dev-dependencies]
3030
itertools = '0.10'

quickwit-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-common"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ['Quickwit, inc <[email protected]>']
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]

quickwit-config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-config"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Quickwit, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial license, contact [email protected]
@@ -14,8 +14,8 @@ anyhow = "1"
1414
byte-unit = { version = "4", default-features = false, features = ["serde"] }
1515
json_comments = "0.2"
1616
once_cell = "1.8.0"
17-
quickwit-common = { version = "0.1.0", path = "../quickwit-common" }
18-
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
17+
quickwit-common = { version = "0.2.0", path = "../quickwit-common" }
18+
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
1919
serde = { version = "1.0", features = ["derive"] }
2020
serde_json = "1.0"
2121
serde_yaml = "0.8"

quickwit-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Quickwit, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]
@@ -15,12 +15,12 @@ anyhow = "1.0"
1515
async-trait = "0.1"
1616
byte-unit = { version = "4", default-features = false, features = ["serde"] }
1717
quickwit-actors = {path="../quickwit-actors"}
18-
quickwit-indexing = { version = "0.1.0", path = "../quickwit-indexing" }
18+
quickwit-indexing = { version = "0.2.0", path = "../quickwit-indexing" }
1919
quickwit-common = {path="../quickwit-common"}
20-
quickwit-doc-mapper = { version = "0.1.0", path = "../quickwit-doc-mapper" }
21-
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore" }
22-
quickwit-directories = { version = "0.1.0", path = "../quickwit-directories" }
23-
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
20+
quickwit-doc-mapper = { version = "0.2.0", path = "../quickwit-doc-mapper" }
21+
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore" }
22+
quickwit-directories = { version = "0.2.0", path = "../quickwit-directories" }
23+
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
2424
tokio = { version = "1", features = ["full"] }
2525
tokio-util = { version = "0.6", features = ["full"] }
2626
rand = "0.8"
@@ -36,4 +36,4 @@ tempfile = '3'
3636

3737
[dev-dependencies]
3838
mockall = "0.11"
39-
quickwit-metastore = { version = "0.1.0", path = "../quickwit-metastore", features=["testsuite"]}
39+
quickwit-metastore = { version = "0.2.0", path = "../quickwit-metastore", features=["testsuite"]}

quickwit-directories/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'quickwit-directories'
3-
version = '0.1.0'
3+
version = "0.2.0"
44
authors = ['Quickwit, Inc. <[email protected]>']
55
edition = '2021'
66
license = 'AGPL-3.0-or-later' # For a commercial, license, contact [email protected]
@@ -17,7 +17,7 @@ serde = "1"
1717
serde_cbor = "0.11"
1818
serde_json = "1"
1919
tantivy = { git= "https://github.com/quickwit-inc/tantivy", rev="48c47f0d3", default-features=false, features = ["mmap", "lz4-compression"] }
20-
quickwit-storage = { version = "0.1.0", path = "../quickwit-storage" }
20+
quickwit-storage = { version = "0.2.0", path = "../quickwit-storage" }
2121
uuid = "0.8"
2222
once_cell = "1"
2323
tokio = { version = "1", features = ["sync"] }

quickwit-doc-mapper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickwit-doc-mapper"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Quickwit, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "AGPL-3.0-or-later" # For a commercial, license, contact [email protected]

0 commit comments

Comments
 (0)