This is an automated email from the ASF dual-hosted git repository.
dimas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new ae9f1a27f main: bump to 1.2.0-incubating-SNAPSHOT (#2624)
ae9f1a27f is described below
commit ae9f1a27ff3a0244f33f05f9f8f877e3fd92fdf7
Author: Robert Stupp <[email protected]>
AuthorDate: Fri Sep 19 18:15:12 2025 +0200
main: bump to 1.2.0-incubating-SNAPSHOT (#2624)
* bump version.txt to 1.2.0-incubating-SNAPSHOT
---
client/python/pyproject.toml | 2 +-
helm/polaris/Chart.yaml | 4 ++--
helm/polaris/README.md | 2 +-
plugins/spark/README.md | 6 +++---
plugins/spark/v3.5/getting-started/notebooks/SparkPolaris.ipynb | 2 +-
site/content/in-dev/unreleased/helm.md | 2 +-
version.txt | 2 +-
7 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/client/python/pyproject.toml b/client/python/pyproject.toml
index 4aa52b779..ab2c1eef9 100644
--- a/client/python/pyproject.toml
+++ b/client/python/pyproject.toml
@@ -19,7 +19,7 @@
[project]
name = "polaris"
-version = "1.1.0"
+version = "1.2.0"
description = "Apache Polaris"
authors = [
{name = "Apache Software Foundation", email = "[email protected]"}
diff --git a/helm/polaris/Chart.yaml b/helm/polaris/Chart.yaml
index 653c5ec22..d8c0cba28 100644
--- a/helm/polaris/Chart.yaml
+++ b/helm/polaris/Chart.yaml
@@ -21,8 +21,8 @@ apiVersion: v2
name: polaris
description: A Helm chart for Apache Polaris (incubating)
type: application
-version: 1.1.0-incubating-SNAPSHOT
-appVersion: 1.1.0-incubating-SNAPSHOT
+version: 1.2.0-incubating-SNAPSHOT
+appVersion: 1.2.0-incubating-SNAPSHOT
home: https://polaris.apache.org/
icon:
https://raw.githubusercontent.com/apache/polaris/main/site/static/img/logos/polaris-brandmark.png
sources:
diff --git a/helm/polaris/README.md b/helm/polaris/README.md
index 192c7c3d3..61103e6bf 100644
--- a/helm/polaris/README.md
+++ b/helm/polaris/README.md
@@ -30,7 +30,7 @@ weight: 675
helm-docs --chart-search-root=helm
-->
-


+


A Helm chart for Apache Polaris (incubating).
diff --git a/plugins/spark/README.md b/plugins/spark/README.md
index c3ac4180c..1bdfe3dd7 100644
--- a/plugins/spark/README.md
+++ b/plugins/spark/README.md
@@ -67,13 +67,13 @@ The Polaris version is defined in the `versions.txt` file
located in the root di
Assume the following values:
- `spark_version`: 3.5
- `scala_version`: 2.12
-- `polaris_version`: 1.1.0-incubating-SNAPSHOT
+- `polaris_version`: 1.2.0-incubating-SNAPSHOT
- `catalog-name`: `polaris`
The Spark command would look like following:
```shell
bin/spark-shell \
---packages
org.apache.polaris:polaris-spark-3.5_2.12:1.1.0-incubating-SNAPSHOT,org.apache.iceberg:iceberg-aws-bundle:1.10.0,io.delta:delta-spark_2.12:3.3.1
\
+--packages
org.apache.polaris:polaris-spark-3.5_2.12:1.2.0-incubating-SNAPSHOT,org.apache.iceberg:iceberg-aws-bundle:1.10.0,io.delta:delta-spark_2.12:3.3.1
\
--conf
spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions,io.delta.sql.DeltaSparkSessionExtension
\
--conf
spark.sql.catalog.spark_catalog=org.apache.spark.sql.delta.catalog.DeltaCatalog
\
--conf spark.sql.catalog.polaris.warehouse=polaris \
@@ -90,7 +90,7 @@ bin/spark-shell \
The polaris-spark project also provides a Spark bundle JAR for the `--jars`
use case. The resulting JAR will follow this naming format:
polaris-spark-<spark_version>_<scala_version>-<polaris_version>-bundle.jar
For example:
-polaris-spark-bundle-3.5_2.12-1.1.0-incubating-SNAPSHOT-bundle.jar
+polaris-spark-bundle-3.5_2.12-1.2.0-incubating-SNAPSHOT-bundle.jar
Run `./gradlew assemble` to build the entire Polaris project without running
tests. After the build completes,
the bundle JAR can be found under:
plugins/spark/v3.5/spark/build/<scala_version>/libs/.
diff --git a/plugins/spark/v3.5/getting-started/notebooks/SparkPolaris.ipynb
b/plugins/spark/v3.5/getting-started/notebooks/SparkPolaris.ipynb
index ad8f7cf44..de1833e93 100644
--- a/plugins/spark/v3.5/getting-started/notebooks/SparkPolaris.ipynb
+++ b/plugins/spark/v3.5/getting-started/notebooks/SparkPolaris.ipynb
@@ -265,7 +265,7 @@
"from pyspark.sql import SparkSession\n",
"\n",
"spark = (SparkSession.builder\n",
- " .config(\"spark.jars\",
\"../polaris_libs/polaris-spark-3.5_2.12-1.1.0-incubating-SNAPSHOT-bundle.jar\")
# TODO: add a way to automatically discover the Jar\n",
+ " .config(\"spark.jars\",
\"../polaris_libs/polaris-spark-3.5_2.12-1.2.0-incubating-SNAPSHOT-bundle.jar\")
# TODO: add a way to automatically discover the Jar\n",
" .config(\"spark.jars.packages\",
\"org.apache.iceberg:iceberg-aws-bundle:1.10.0,io.delta:delta-spark_2.12:3.2.1\")\n",
" .config(\"spark.sql.catalog.spark_catalog\",
\"org.apache.spark.sql.delta.catalog.DeltaCatalog\")\n",
" .config('spark.sql.iceberg.vectorization.enabled', 'false')\n",
diff --git a/site/content/in-dev/unreleased/helm.md
b/site/content/in-dev/unreleased/helm.md
index 0fc13f90e..ed4545cac 100644
--- a/site/content/in-dev/unreleased/helm.md
+++ b/site/content/in-dev/unreleased/helm.md
@@ -30,7 +30,7 @@ weight: 675
helm-docs --chart-search-root=helm
-->
-


+


A Helm chart for Apache Polaris (incubating).
diff --git a/version.txt b/version.txt
index 85cdfa9be..bde9a30ee 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-1.1.0-incubating-SNAPSHOT
\ No newline at end of file
+1.2.0-incubating-SNAPSHOT