Skip to content

Commit

Permalink
Merge branch 'main' into typo_check
Browse files Browse the repository at this point in the history
  • Loading branch information
broccoliSpicy authored Oct 21, 2024
2 parents 8228502 + f572d63 commit 9f18ab1
Show file tree
Hide file tree
Showing 27 changed files with 1,127 additions and 619 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
# pull_request_target checks out the base branch by default, not
# the PR branch.
ref: "${{ github.event.pull_request.merge_commit_sha }}"
ref: "${{ github.event.pull_request.head.sha }}"
path: pr
- uses: actions/setup-python@v5
with:
Expand Down
36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exclude = ["python"]
resolver = "2"

[workspace.package]
version = "0.18.3"
version = "0.19.2"
edition = "2021"
authors = ["Lance Devs <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -44,21 +44,21 @@ categories = [
rust-version = "1.78"

[workspace.dependencies]
lance = { version = "=0.18.3", path = "./rust/lance" }
lance-arrow = { version = "=0.18.3", path = "./rust/lance-arrow" }
lance-core = { version = "=0.18.3", path = "./rust/lance-core" }
lance-datafusion = { version = "=0.18.3", path = "./rust/lance-datafusion" }
lance-datagen = { version = "=0.18.3", path = "./rust/lance-datagen" }
lance-encoding = { version = "=0.18.3", path = "./rust/lance-encoding" }
lance-encoding-datafusion = { version = "=0.18.3", path = "./rust/lance-encoding-datafusion" }
lance-file = { version = "=0.18.3", path = "./rust/lance-file" }
lance-index = { version = "=0.18.3", path = "./rust/lance-index" }
lance-io = { version = "=0.18.3", path = "./rust/lance-io" }
lance-jni = { version = "=0.18.3", path = "./java/core/lance-jni" }
lance-linalg = { version = "=0.18.3", path = "./rust/lance-linalg" }
lance-table = { version = "=0.18.3", path = "./rust/lance-table" }
lance-test-macros = { version = "=0.18.3", path = "./rust/lance-test-macros" }
lance-testing = { version = "=0.18.3", path = "./rust/lance-testing" }
lance = { version = "=0.19.2", path = "./rust/lance" }
lance-arrow = { version = "=0.19.2", path = "./rust/lance-arrow" }
lance-core = { version = "=0.19.2", path = "./rust/lance-core" }
lance-datafusion = { version = "=0.19.2", path = "./rust/lance-datafusion" }
lance-datagen = { version = "=0.19.2", path = "./rust/lance-datagen" }
lance-encoding = { version = "=0.19.2", path = "./rust/lance-encoding" }
lance-encoding-datafusion = { version = "=0.19.2", path = "./rust/lance-encoding-datafusion" }
lance-file = { version = "=0.19.2", path = "./rust/lance-file" }
lance-index = { version = "=0.19.2", path = "./rust/lance-index" }
lance-io = { version = "=0.19.2", path = "./rust/lance-io" }
lance-jni = { version = "=0.19.2", path = "./java/core/lance-jni" }
lance-linalg = { version = "=0.19.2", path = "./rust/lance-linalg" }
lance-table = { version = "=0.19.2", path = "./rust/lance-table" }
lance-test-macros = { version = "=0.19.2", path = "./rust/lance-test-macros" }
lance-testing = { version = "=0.19.2", path = "./rust/lance-testing" }
approx = "0.5.1"
# Note that this one does not include pyarrow
arrow = { version = "52.2", optional = false, features = ["prettyprint"] }
Expand Down Expand Up @@ -111,7 +111,7 @@ datafusion-physical-expr = { version = "41.0", features = [
] }
deepsize = "0.2.0"
either = "1.0"
fsst = { version = "=0.18.3", path = "./rust/lance-encoding/src/compression_algo/fsst" }
fsst = { version = "=0.19.2", path = "./rust/lance-encoding/src/compression_algo/fsst" }
futures = "0.3"
http = "0.2.9"
hyperloglogplus = { version = "0.4.1", features = ["const-loop"] }
Expand Down Expand Up @@ -141,7 +141,7 @@ serde = { version = "^1" }
serde_json = { version = "1" }
shellexpand = "3.0"
snafu = "0.7.5"
tantivy = "0.22.0"
tantivy = { version = "0.22.0", features = ["stopwords"] }
tempfile = "3"
test-log = { version = "0.2.15" }
tokio = { version = "1.23", features = [
Expand Down
2 changes: 1 addition & 1 deletion java/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.lancedb</groupId>
<artifactId>lance-parent</artifactId>
<version>0.18.3</version>
<version>0.19.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.lancedb</groupId>
<artifactId>lance-parent</artifactId>
<version>0.18.3</version>
<version>0.19.2</version>
<packaging>pom</packaging>

<name>Lance Parent</name>
Expand Down
4 changes: 2 additions & 2 deletions java/spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.lancedb</groupId>
<artifactId>lance-parent</artifactId>
<version>0.18.3</version>
<version>0.19.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>com.lancedb</groupId>
<artifactId>lance-core</artifactId>
<version>0.18.3</version>
<version>0.19.2</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pylance"
version = "0.18.3"
version = "0.19.2"
edition = "2021"
authors = ["Lance Devs <[email protected]>"]
rust-version = "1.65"
Expand Down
Loading

0 comments on commit 9f18ab1

Please sign in to comment.