Skip to content

Commit

Permalink
libsql: prepare v0.4.0 release (#1469)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Jun 11, 2024
1 parent edd4889 commit 43ec7b3
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 24 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ codegen-units = 1
panic = "unwind"

[workspace.dependencies]
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.30", default-features = false, features = [
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.31", default-features = false, features = [
"libsql-experimental",
"column_decltype",
"load_extension",
Expand Down
2 changes: 1 addition & 1 deletion libsql-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-ffi"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
build = "build.rs"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion libsql-hrana/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-hrana"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "hrana protocol for libsql"
Expand Down
4 changes: 2 additions & 2 deletions libsql-replication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql_replication"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "libSQL replication protocol"
repository = "https://github.com/tursodatabase/libsql"
Expand All @@ -11,7 +11,7 @@ license = "MIT"
[dependencies]
tonic = { version = "0.11", features = ["tls"] }
prost = "0.12"
libsql-sys = { version = "0.5", path = "../libsql-sys", default-features = false, features = ["wal", "rusqlite", "api"] }
libsql-sys = { version = "0.6", path = "../libsql-sys", default-features = false, features = ["wal", "rusqlite", "api"] }
rusqlite = { workspace = true }
parking_lot = "0.12.1"
bytes = { version = "1.5.0", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions libsql-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ sha2 = "0.10"
sha256 = "1.1.3"
libsql-sys = { path = "../libsql-sys", features = ["wal"], default-features = false }
libsql-hrana = { path = "../libsql-hrana" }
sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.11.0", default-features = false, features = [ "YYNOERRORRECOVERY" ] }
sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", default-features = false, features = [ "YYNOERRORRECOVERY" ] }
tempfile = "3.7.0"
thiserror = "1.0.38"
tokio = { version = "1.22.2", features = ["rt-multi-thread", "net", "io-std", "io-util", "time", "macros", "sync", "fs", "signal"] }
Expand Down Expand Up @@ -118,4 +118,4 @@ wasm-udfs = ["rusqlite/libsql-wasm-experimental"]
unix-excl-vfs = ["libsql-sys/unix-excl-vfs"]
encryption = ["dep:aes", "dep:cbc", "libsql-sys/encryption", "libsql_replication/encryption", "bottomless/encryption"]
test-encryption = ["libsql/encryption"]
durable-wal = ["libsql-storage"]
durable-wal = ["libsql-storage"]
4 changes: 2 additions & 2 deletions libsql-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-sys"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "MIT"
description = "Native bindings to libSQL"
Expand All @@ -12,7 +12,7 @@ categories = ["external-ffi-bindings"]

[dependencies]
bytes = "1.5.0"
libsql-ffi = { version = "0.2", path = "../libsql-ffi/" }
libsql-ffi = { version = "0.3", path = "../libsql-ffi/" }
once_cell = "1.18.0"
rusqlite = { workspace = true, features = ["trace"], optional = true }
tracing = "0.1.37"
Expand Down
10 changes: 5 additions & 5 deletions libsql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql"
version = "0.3.5"
version = "0.4.0"
edition = "2021"
description = "libSQL library: the main gateway for interacting with the database"
repository = "https://github.com/tursodatabase/libsql"
Expand All @@ -11,8 +11,8 @@ tracing = { version = "0.1.37", default-features = false }
thiserror = "1.0.40"

futures = { version = "0.3.28", optional = true }
libsql-sys = { version = "0.5", path = "../libsql-sys", optional = true }
libsql-hrana = { version = "0.1", path = "../libsql-hrana", optional = true }
libsql-sys = { version = "0.6", path = "../libsql-sys", optional = true }
libsql-hrana = { version = "0.2", path = "../libsql-hrana", optional = true }
tokio = { version = "1.29.1", features = ["sync"], optional = true }
tokio-util = { version = "0.7", features = ["io-util", "codec"], optional = true }
parking_lot = { version = "0.12.1", optional = true }
Expand All @@ -37,10 +37,10 @@ tower-http = { version = "0.4.4", features = ["trace", "set-header", "util"], op
http = { version = "0.2", optional = true }
zerocopy = { version = "0.7.28", optional = true }

sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.11", optional = true }
sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.12", optional = true }
fallible-iterator = { version = "0.3", optional = true }

libsql_replication = { version = "0.3", path = "../libsql-replication", optional = true }
libsql_replication = { version = "0.4", path = "../libsql-replication", optional = true }
async-stream = { version = "0.3.5", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions vendored/rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libsql-rusqlite"
# Note: Update version in README.md when you change this.
version = "0.30.0"
version = "0.31.0"
authors = ["The rusqlite developers"]
edition = "2018"
description = "Ergonomic wrapper for SQLite (libsql fork)"
Expand Down Expand Up @@ -107,7 +107,7 @@ fallible-iterator = "0.2"
fallible-streaming-iterator = "0.1"
uuid = { version = "1.0", optional = true }
smallvec = "1.6.1"
libsql-ffi = { version = "0.2", path = "../../libsql-ffi" }
libsql-ffi = { version = "0.3", path = "../../libsql-ffi" }

[dev-dependencies]
doc-comment = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion vendored/sqlite3-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-sqlite3-parser"
version = "0.11.1"
version = "0.12.0"
edition = "2021"
authors = ["gwenn"]
description = "SQL parser (as understood by SQLite) (libsql fork)"
Expand Down

0 comments on commit 43ec7b3

Please sign in to comment.