Compare commits

...

3 Commits

Author SHA1 Message Date
Lance Release
11fcdb1194 Bump version: 0.8.2-beta.0 → 0.8.2 2024-06-05 13:47:16 +00:00
Lance Release
95a5a0d713 Bump version: 0.8.1 → 0.8.2-beta.0 2024-06-05 13:47:16 +00:00
Weston Pace
c3043a54c6 feat: bump lance dependency to 0.12.1 (#1357) 2024-06-05 06:07:11 -07:00
4 changed files with 9 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ members = [
"rust/lancedb",
"nodejs",
"python",
"java/core/lancedb-jni"
"java/core/lancedb-jni",
]
# Python package needs to be built by maturin.
exclude = ["python"]
@@ -20,11 +20,11 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
categories = ["database-implementations"]
[workspace.dependencies]
lance = { "version" = "=0.12.0", "features" = ["dynamodb"] }
lance-index = { "version" = "=0.12.0" }
lance-linalg = { "version" = "=0.12.0" }
lance-testing = { "version" = "=0.12.0" }
lance-datafusion = { "version" = "=0.12.0" }
lance = { "version" = "=0.12.1", "features" = ["dynamodb"] }
lance-index = { "version" = "=0.12.1" }
lance-linalg = { "version" = "=0.12.1" }
lance-testing = { "version" = "=0.12.1" }
lance-datafusion = { "version" = "=0.12.1" }
# Note that this one does not include pyarrow
arrow = { version = "51.0", optional = false }
arrow-array = "51.0"

View File

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

View File

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

View File

@@ -3,7 +3,7 @@ name = "lancedb"
# version in Cargo.toml
dependencies = [
"deprecation",
"pylance==0.12.0",
"pylance==0.12.1",
"ratelimiter~=1.0",
"requests>=2.31.0",
"retry>=0.9.2",