diff --git a/Cargo.toml b/Cargo.toml index 3316b1c8..27a40ae3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,10 +14,10 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.11.0", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.11.0" } -lance-linalg = { "version" = "=0.11.0" } -lance-testing = { "version" = "=0.11.0" } +lance = { "version" = "=0.11.1", "features" = ["dynamodb"] } +lance-index = { "version" = "=0.11.1" } +lance-linalg = { "version" = "=0.11.1" } +lance-testing = { "version" = "=0.11.1" } # Note that this one does not include pyarrow arrow = { version = "51.0", optional = false } arrow-array = "51.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index 861cfdc5..81a53149 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.11.0", + "pylance==0.11.1", "ratelimiter~=1.0", "requests>=2.31.0", "retry>=0.9.2", diff --git a/rust/lancedb/src/table.rs b/rust/lancedb/src/table.rs index 45df8e42..bedbed73 100644 --- a/rust/lancedb/src/table.rs +++ b/rust/lancedb/src/table.rs @@ -1751,7 +1751,7 @@ impl TableInternal for NativeTable { builder.when_not_matched_by_source(WhenNotMatchedBySource::Keep); } let job = builder.try_build()?; - let new_dataset = job.execute_reader(new_data).await?; + let (new_dataset, _stats) = job.execute_reader(new_data).await?; self.dataset.set_latest(new_dataset.as_ref().clone()).await; Ok(()) }