Skip to content

Commit 828b707

Browse files
LuQQiuclaude
andcommitted
chore: Bump version to 0.0.6 for release
- Updated all pom.xml versions from 0.0.5 to 0.0.6 - Updated lance-spark.version property to 0.0.6 - Updated documentation examples to use 0.0.6 - Updated Dockerfile LANCE_SPARK_VERSION to 0.0.6 - All lance-namespace dependencies already at 0.0.7 - Removed redundant VectorWriteTest (covered by FixedSizeListDataFrameTest) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6bff7c1 commit 828b707

17 files changed

Lines changed: 24 additions & 265 deletions

File tree

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ WORKDIR ${SPARK_HOME}
3535

3636
ENV SPARK_VERSION=3.5.6
3737
ENV SPARK_MAJOR_VERSION=3.5
38-
ENV LANCE_SPARK_VERSION=0.0.5
38+
ENV LANCE_SPARK_VERSION=0.0.6
3939
ENV LANCE_NS_VERSION=0.0.7
4040

4141
# Download spark

docs/src/config.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ and namespace-specific options:
4343
=== "Spark Shell"
4444
```shell
4545
spark-shell \
46-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5 \
46+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6 \
4747
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
4848
--conf spark.sql.catalog.lance.impl=dir \
4949
--conf spark.sql.catalog.lance.root=/path/to/lance/database
@@ -52,7 +52,7 @@ and namespace-specific options:
5252
=== "Spark Submit"
5353
```shell
5454
spark-submit \
55-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5 \
55+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6 \
5656
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
5757
--conf spark.sql.catalog.lance.impl=dir \
5858
--conf spark.sql.catalog.lance.root=/path/to/lance/database \
@@ -155,7 +155,7 @@ Here we use LanceDB Cloud as an example of the REST namespace:
155155
=== "Spark Shell"
156156
```shell
157157
spark-shell \
158-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5 \
158+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6 \
159159
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
160160
--conf spark.sql.catalog.lance.impl=rest \
161161
--conf spark.sql.catalog.lance.headers.x-api-key=your-api-key \
@@ -166,7 +166,7 @@ Here we use LanceDB Cloud as an example of the REST namespace:
166166
=== "Spark Submit"
167167
```shell
168168
spark-submit \
169-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5 \
169+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6 \
170170
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
171171
--conf spark.sql.catalog.lance.impl=rest \
172172
--conf spark.sql.catalog.lance.headers.x-api-key=your-api-key \
@@ -237,7 +237,7 @@ Using the Glue namespace requires additional dependencies beyond the main Lance
237237
Example with Spark Shell:
238238
```shell
239239
spark-shell \
240-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5,com.lancedb:lance-namespace-glue:0.0.7,software.amazon.awssdk:bundle:2.20.0 \
240+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6,com.lancedb:lance-namespace-glue:0.0.7,software.amazon.awssdk:bundle:2.20.0 \
241241
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
242242
--conf spark.sql.catalog.lance.impl=glue \
243243
--conf spark.sql.catalog.lance.root=s3://your-bucket/lance
@@ -351,7 +351,7 @@ Using Hive namespaces requires additional JARs beyond the main Lance Spark bundl
351351
Example with Spark Shell for Hive 3.x:
352352
```shell
353353
spark-shell \
354-
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5,com.lancedb:lance-namespace-hive3:0.0.7 \
354+
--packages com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6,com.lancedb:lance-namespace-hive3:0.0.7 \
355355
--conf spark.sql.catalog.lance=com.lancedb.lance.spark.LanceNamespaceSparkCatalog \
356356
--conf spark.sql.catalog.lance.impl=hive3 \
357357
--conf spark.sql.catalog.lance.hadoop.hive.metastore.uris=thrift://metastore:9083 \

docs/src/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If you want to also include the bundled jar in your own bundle, remove the provi
3232
<dependency>
3333
<groupId>com.lancedb</groupId>
3434
<artifactId>lance-spark-bundle-3.5_2.12</artifactId>
35-
<version>0.0.5</version>
35+
<version>0.0.6</version>
3636
<scope>provided</scope>
3737
</dependency>
3838
```
@@ -41,15 +41,15 @@ If you want to also include the bundled jar in your own bundle, remove the provi
4141
```gradle
4242
dependencies {
4343
// For Spark 3.5 (Scala 2.12)
44-
compileOnly 'com.lancedb:lance-spark-bundle-3.5_2.12:0.0.5'
44+
compileOnly 'com.lancedb:lance-spark-bundle-3.5_2.12:0.0.6'
4545
}
4646
```
4747

4848
=== "sbt"
4949
```scala
5050
libraryDependencies ++= Seq(
5151
// For Spark 3.5 (Scala 2.12)
52-
"com.lancedb" %% "lance-spark-bundle-3.5_2.12" % "0.0.5" % "provided"
52+
"com.lancedb" %% "lance-spark-bundle-3.5_2.12" % "0.0.6" % "provided"
5353
)
5454
```
5555

lance-spark-3.4_2.12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-3.4_2.13/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-3.5_2.12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-3.5_2.13/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-4.0_2.13/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-base_2.12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.lancedb</groupId>
1010
<artifactId>lance-spark-root</artifactId>
11-
<version>0.0.5</version>
11+
<version>0.0.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

lance-spark-base_2.12/src/test/java/com/lancedb/lance/spark/write/VectorWriteTest.java

Lines changed: 0 additions & 241 deletions
This file was deleted.

0 commit comments

Comments
 (0)