diff --git a/Cargo.lock b/Cargo.lock index 6f57783..284bbd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -690,7 +690,7 @@ dependencies = [ [[package]] name = "ctranslate2-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "async-stream", "async-trait", @@ -1319,7 +1319,7 @@ dependencies = [ [[package]] name = "http-api-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "async-trait", "futures", @@ -1651,7 +1651,7 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "llama-cpp-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "async-stream", "async-trait", @@ -3086,7 +3086,7 @@ dependencies = [ [[package]] name = "tabby" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "anyhow", "async-stream", @@ -3131,7 +3131,7 @@ dependencies = [ [[package]] name = "tabby-common" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "chrono", "filenamify", @@ -3146,7 +3146,7 @@ dependencies = [ [[package]] name = "tabby-download" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -3165,7 +3165,7 @@ dependencies = [ [[package]] name = "tabby-inference" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "async-stream", "async-trait", @@ -3178,7 +3178,7 @@ dependencies = [ [[package]] name = "tabby-scheduler" -version = "0.2.0-rc.0" +version = "0.2.0" dependencies = [ "anyhow", "file-rotate", diff --git a/Cargo.toml b/Cargo.toml index 691a465..cfdd6d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" authors = ["Meng Zhang"] homepage = "https://github.com/TabbyML/tabby" diff --git a/crates/ctranslate2-bindings/Cargo.toml b/crates/ctranslate2-bindings/Cargo.toml index 24117da..922b9a4 100644 --- a/crates/ctranslate2-bindings/Cargo.toml +++ b/crates/ctranslate2-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctranslate2-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [dependencies] diff --git a/crates/http-api-bindings/Cargo.toml b/crates/http-api-bindings/Cargo.toml index 40d2e9e..b7b4cd4 100644 --- a/crates/http-api-bindings/Cargo.toml +++ b/crates/http-api-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-api-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [dependencies] @@ -9,7 +9,7 @@ futures.workspace = true reqwest = { workspace = true, features = ["json"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } -tabby-inference = { version = "0.2.0-rc.0", path = "../tabby-inference" } +tabby-inference = { version = "^0.2.0", path = "../tabby-inference" } [dev-dependencies] tokio = { workspace = true, features = ["full"] } diff --git a/crates/llama-cpp-bindings/Cargo.toml b/crates/llama-cpp-bindings/Cargo.toml index 7ffe82d..90e8ccb 100644 --- a/crates/llama-cpp-bindings/Cargo.toml +++ b/crates/llama-cpp-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llama-cpp-bindings" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [build-dependencies] diff --git a/crates/tabby-common/Cargo.toml b/crates/tabby-common/Cargo.toml index daa3da1..794e3d9 100644 --- a/crates/tabby-common/Cargo.toml +++ b/crates/tabby-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby-common" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [dependencies] diff --git a/crates/tabby-download/Cargo.toml b/crates/tabby-download/Cargo.toml index c0a6f6d..585cad6 100644 --- a/crates/tabby-download/Cargo.toml +++ b/crates/tabby-download/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby-download" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [dependencies] diff --git a/crates/tabby-inference/Cargo.toml b/crates/tabby-inference/Cargo.toml index aee8447..88c4051 100644 --- a/crates/tabby-inference/Cargo.toml +++ b/crates/tabby-inference/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby-inference" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/tabby-scheduler/Cargo.toml b/crates/tabby-scheduler/Cargo.toml index 6a2d88b..4d1d12e 100644 --- a/crates/tabby-scheduler/Cargo.toml +++ b/crates/tabby-scheduler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby-scheduler" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/tabby/Cargo.toml b/crates/tabby/Cargo.toml index 4826d53..ddd0b2b 100644 --- a/crates/tabby/Cargo.toml +++ b/crates/tabby/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby" -version = "0.2.0-rc.0" +version = "0.2.0" edition = "2021" [dependencies]