Compare commits

...

3 Commits

Author SHA1 Message Date
Lance Release
bcbbeb7a00 Bump version: 0.17.1-beta.2 → 0.17.1-beta.3 2024-12-11 19:17:54 +00:00
Weston Pace
d6c0f75078 feat: upgrade to lance prerelease 0.21.0b2 (#1933) 2024-12-11 11:17:10 -08:00
Lance Release
e820e356a0 Updating package-lock.json 2024-12-11 17:58:05 +00:00
5 changed files with 22 additions and 22 deletions

View File

@@ -21,16 +21,16 @@ categories = ["database-implementations"]
rust-version = "1.80.0" # TODO: lower this once we upgrade Lance again. rust-version = "1.80.0" # TODO: lower this once we upgrade Lance again.
[workspace.dependencies] [workspace.dependencies]
lance = { "version" = "=0.20.0", "features" = [ lance = { "version" = "=0.21.0", "features" = [
"dynamodb", "dynamodb",
] } ], git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-io = "0.20.0" lance-io = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-index = "0.20.0" lance-index = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-linalg = "0.20.0" lance-linalg = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-table = "0.20.0" lance-table = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-testing = "0.20.0" lance-testing = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-datafusion = "0.20.0" lance-datafusion = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
lance-encoding = "0.20.0" lance-encoding = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" }
# Note that this one does not include pyarrow # Note that this one does not include pyarrow
arrow = { version = "53.2", optional = false } arrow = { version = "53.2", optional = false }
arrow-array = "53.2" arrow-array = "53.2"

20
node/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "vectordb", "name": "vectordb",
"version": "0.14.1-beta.1", "version": "0.14.1-beta.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vectordb", "name": "vectordb",
"version": "0.14.1-beta.1", "version": "0.14.1-beta.2",
"cpu": [ "cpu": [
"x64", "x64",
"arm64" "arm64"
@@ -52,14 +52,14 @@
"uuid": "^9.0.0" "uuid": "^9.0.0"
}, },
"optionalDependencies": { "optionalDependencies": {
"@lancedb/vectordb-darwin-arm64": "0.14.1-beta.1", "@lancedb/vectordb-darwin-arm64": "0.14.1-beta.2",
"@lancedb/vectordb-darwin-x64": "0.14.1-beta.1", "@lancedb/vectordb-darwin-x64": "0.14.1-beta.2",
"@lancedb/vectordb-linux-arm64-gnu": "0.14.1-beta.1", "@lancedb/vectordb-linux-arm64-gnu": "0.14.1-beta.2",
"@lancedb/vectordb-linux-arm64-musl": "0.14.1-beta.1", "@lancedb/vectordb-linux-arm64-musl": "0.14.1-beta.2",
"@lancedb/vectordb-linux-x64-gnu": "0.14.1-beta.1", "@lancedb/vectordb-linux-x64-gnu": "0.14.1-beta.2",
"@lancedb/vectordb-linux-x64-musl": "0.14.1-beta.1", "@lancedb/vectordb-linux-x64-musl": "0.14.1-beta.2",
"@lancedb/vectordb-win32-arm64-msvc": "0.14.1-beta.1", "@lancedb/vectordb-win32-arm64-msvc": "0.14.1-beta.2",
"@lancedb/vectordb-win32-x64-msvc": "0.14.1-beta.1" "@lancedb/vectordb-win32-x64-msvc": "0.14.1-beta.2"
}, },
"peerDependencies": { "peerDependencies": {
"@apache-arrow/ts": "^14.0.2", "@apache-arrow/ts": "^14.0.2",

View File

@@ -1,5 +1,5 @@
[tool.bumpversion] [tool.bumpversion]
current_version = "0.17.1-beta.2" current_version = "0.17.1-beta.3"
parse = """(?x) parse = """(?x)
(?P<major>0|[1-9]\\d*)\\. (?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\. (?P<minor>0|[1-9]\\d*)\\.

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "lancedb-python" name = "lancedb-python"
version = "0.17.1-beta.2" version = "0.17.1-beta.3"
edition.workspace = true edition.workspace = true
description = "Python bindings for LanceDB" description = "Python bindings for LanceDB"
license.workspace = true license.workspace = true

View File

@@ -3,7 +3,7 @@ name = "lancedb"
# version in Cargo.toml # version in Cargo.toml
dependencies = [ dependencies = [
"deprecation", "deprecation",
"pylance==0.20.0", "pylance==0.21.0b2",
"tqdm>=4.27.0", "tqdm>=4.27.0",
"pydantic>=1.10", "pydantic>=1.10",
"packaging", "packaging",