diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 1e4bce45ac..0c816faa25 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -1477,7 +1477,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scylla" -version = "0.14.0" +version = "0.15.0" dependencies = [ "arc-swap", "assert_matches", @@ -1522,7 +1522,7 @@ dependencies = [ [[package]] name = "scylla-cql" -version = "0.3.0" +version = "0.4.0" dependencies = [ "assert_matches", "async-trait", @@ -1549,7 +1549,7 @@ dependencies = [ [[package]] name = "scylla-macros" -version = "0.6.0" +version = "0.7.0" dependencies = [ "darling", "proc-macro2", diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 0fb1189a30..8548982e04 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,14 +1,14 @@ [tool.poetry] name = "sphinx-docs" description = "ScyllaDB Documentation" -version = "0.14" +version = "0.15" authors = ["ScyllaDB Documentation Contributors"] package-mode = false [tool.poetry.dependencies] python = "^3.10" pygments = "^2.18.0" -redirects_cli ="^0.1.3" +redirects_cli = "^0.1.3" sphinx-scylladb-theme = "^1.8.1" sphinx-sitemap = "^2.6.0" sphinx-autobuild = "^2024.4.19" diff --git a/docs/source/conf.py b/docs/source/conf.py index eabedf8698..9e87cf1e79 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,14 +13,14 @@ # -- Global variables # Build documentation for the following tags and branches -TAGS = ['v0.13.2', 'v0.14.0'] +TAGS = ['v0.14.0', 'v0.15.0'] BRANCHES = ['main'] # Set the latest version. -LATEST_VERSION = 'v0.14.0' +LATEST_VERSION = 'v0.15.0' # Set which versions are not released yet. UNSTABLE_VERSIONS = ['main'] # Set which versions are deprecated -DEPRECATED_VERSIONS = ['v0.13.2'] +DEPRECATED_VERSIONS = ['v0.14.0'] # -- General configuration diff --git a/docs/source/quickstart/create-project.md b/docs/source/quickstart/create-project.md index 7fbd45c533..bc453bfbcc 100644 --- a/docs/source/quickstart/create-project.md +++ b/docs/source/quickstart/create-project.md @@ -8,7 +8,7 @@ cargo new myproject In `Cargo.toml` add useful dependencies: ```toml [dependencies] -scylla = "0.14" +scylla = "0.15" tokio = { version = "1.12", features = ["full"] } futures = "0.3.6" uuid = "1.0" diff --git a/scylla-cql/Cargo.toml b/scylla-cql/Cargo.toml index fa0787f991..e80fa716d2 100644 --- a/scylla-cql/Cargo.toml +++ b/scylla-cql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla-cql" -version = "0.3.0" +version = "0.4.0" edition = "2021" rust-version = "1.70" description = "CQL data types and primitives, for interacting with Scylla." @@ -11,7 +11,7 @@ categories = ["database"] license = "MIT OR Apache-2.0" [dependencies] -scylla-macros = { version = "0.6.0", path = "../scylla-macros" } +scylla-macros = { version = "0.7.0", path = "../scylla-macros" } byteorder = "1.3.4" bytes = "1.0.1" tokio = { version = "1.34", features = ["io-util", "time"] } diff --git a/scylla-macros/Cargo.toml b/scylla-macros/Cargo.toml index 92d0b22339..0565c3fd16 100644 --- a/scylla-macros/Cargo.toml +++ b/scylla-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla-macros" -version = "0.6.0" +version = "0.7.0" edition = "2021" rust-version = "1.70" description = "proc macros for scylla async CQL driver" diff --git a/scylla-proxy/Cargo.toml b/scylla-proxy/Cargo.toml index 86fc9b5e8c..4f4ee627f8 100644 --- a/scylla-proxy/Cargo.toml +++ b/scylla-proxy/Cargo.toml @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0" defaults = [] [dependencies] -scylla-cql = { version = "0.3.0", path = "../scylla-cql" } +scylla-cql = { version = "0.4.0", path = "../scylla-cql" } byteorder = "1.3.4" bytes = "1.2.0" futures = "0.3.6" diff --git a/scylla/Cargo.toml b/scylla/Cargo.toml index 9fba7dd66f..d5d9551e2d 100644 --- a/scylla/Cargo.toml +++ b/scylla/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scylla" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.70" description = "Async CQL driver for Rust, optimized for Scylla, fully compatible with Apache Cassandraâ„¢" @@ -41,8 +41,8 @@ full-serialization = [ ] [dependencies] -scylla-macros = { version = "0.6.0", path = "../scylla-macros" } -scylla-cql = { version = "0.3.0", path = "../scylla-cql" } +scylla-macros = { version = "0.7.0", path = "../scylla-macros" } +scylla-cql = { version = "0.4.0", path = "../scylla-cql" } byteorder = "1.3.4" bytes = "1.0.1" futures = "0.3.6" @@ -84,7 +84,7 @@ num-bigint-04 = { package = "num-bigint", version = "0.4" } bigdecimal-04 = { package = "bigdecimal", version = "0.4" } scylla-proxy = { version = "0.0.3", path = "../scylla-proxy" } ntest = "0.9.3" -criterion = "0.4" # Note: v0.5 needs at least rust 1.70.0 +criterion = "0.4" # Note: v0.5 needs at least rust 1.70.0 tokio = { version = "1.34", features = ["test-util"] } tracing-subscriber = { version = "0.3.14", features = ["env-filter"] } assert_matches = "1.5.0"