Skip to content

Commit ad04a77

Browse files
Releasing 2.14.1
1 parent f0a820d commit ad04a77

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6-
## [UNRELEASED] - YYYY-MM-DD
6+
## [2.14.1] - 2025-07-17
77

88
### Changed
99
- Fixed release process (#319)

PYSPARK-DEPS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ docker compose -f docker-compose.yml up -d
7676

7777
Run the `example.py` Spark application on the example cluster:
7878
```shell
79-
docker exec spark-master spark-submit --master spark://master:7077 --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5 /example/example.py
79+
docker exec spark-master spark-submit --master spark://master:7077 --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5 /example/example.py
8080
```
81-
The `--packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5` argument
81+
The `--packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5` argument
8282
tells `spark-submit` to add the `spark-extension` Maven package to the Spark job.
8383

8484
Alternatively, install the `pyspark-extension` PyPi package via `pip install` and remove the `--packages` argument from `spark-submit`:

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ The package version has the following semantics: `spark-extension_{SCALA_COMPAT_
198198
Add this line to your `build.sbt` file:
199199

200200
```sbt
201-
libraryDependencies += "uk.co.gresearch.spark" %% "spark-extension" % "2.14.0-3.5"
201+
libraryDependencies += "uk.co.gresearch.spark" %% "spark-extension" % "2.14.1-3.5"
202202
```
203203

204204
### Maven
@@ -209,7 +209,7 @@ Add this dependency to your `pom.xml` file:
209209
<dependency>
210210
<groupId>uk.co.gresearch.spark</groupId>
211211
<artifactId>spark-extension_2.12</artifactId>
212-
<version>2.14.0-3.5</version>
212+
<version>2.14.1-3.5</version>
213213
</dependency>
214214
```
215215

@@ -219,7 +219,7 @@ Add this dependency to your `build.gradle` file:
219219

220220
```groovy
221221
dependencies {
222-
implementation "uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5"
222+
implementation "uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5"
223223
}
224224
```
225225

@@ -228,7 +228,7 @@ dependencies {
228228
Submit your Spark app with the Spark Extension dependency (version ≥1.1.0) as follows:
229229

230230
```shell script
231-
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5 [jar]
231+
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5 [jar]
232232
```
233233

234234
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark version.
@@ -238,7 +238,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
238238
Launch a Spark Shell with the Spark Extension dependency (version ≥1.1.0) as follows:
239239

240240
```shell script
241-
spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5
241+
spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5
242242
```
243243

244244
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark Shell version.
@@ -254,7 +254,7 @@ from pyspark.sql import SparkSession
254254

255255
spark = SparkSession \
256256
.builder \
257-
.config("spark.jars.packages", "uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5") \
257+
.config("spark.jars.packages", "uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5") \
258258
.getOrCreate()
259259
```
260260

@@ -265,7 +265,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
265265
Launch the Python Spark REPL with the Spark Extension dependency (version ≥1.1.0) as follows:
266266

267267
```shell script
268-
pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5
268+
pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5
269269
```
270270

271271
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your PySpark version.
@@ -275,7 +275,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
275275
Run your Python scripts that use PySpark via `spark-submit`:
276276

277277
```shell script
278-
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5 [script.py]
278+
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5 [script.py]
279279
```
280280

281281
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark version.
@@ -289,7 +289,7 @@ Running your Python application on a Spark cluster will still require one of the
289289
to add the Scala package to the Spark environment.
290290

291291
```shell script
292-
pip install pyspark-extension==2.14.0.3.5
292+
pip install pyspark-extension==2.14.1.3.5
293293
```
294294

295295
Note: Pick the right Spark version (here 3.5) depending on your PySpark version.
@@ -299,7 +299,7 @@ Note: Pick the right Spark version (here 3.5) depending on your PySpark version.
299299
There are plenty of [Data Science notebooks](https://datasciencenotebook.org/) around. To use this library,
300300
add **a jar dependency** to your notebook using these **Maven coordinates**:
301301

302-
uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.5
302+
uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.5
303303

304304
Or [download the jar](https://mvnrepository.com/artifact/uk.co.gresearch.spark/spark-extension) and place it
305305
on a filesystem where it is accessible by the notebook, and reference that jar file directly.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>uk.co.gresearch.spark</groupId>
44
<artifactId>spark-extension_2.13</artifactId>
5-
<version>2.14.1-3.5-SNAPSHOT</version>
5+
<version>2.14.1-3.5</version>
66
<name>Spark Extension</name>
77
<description>A library that provides useful extensions to Apache Spark.</description>
88
<inceptionYear>2020</inceptionYear>

python/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Running your Python application on a Spark cluster will still require one of the
9494
to add the Scala package to the Spark environment.
9595

9696
```shell script
97-
pip install pyspark-extension==2.14.0.3.4
97+
pip install pyspark-extension==2.14.1.3.4
9898
```
9999

100100
Note: Pick the right Spark version (here 3.4) depending on your PySpark version.
@@ -108,7 +108,7 @@ from pyspark.sql import SparkSession
108108

109109
spark = SparkSession \
110110
.builder \
111-
.config("spark.jars.packages", "uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.4") \
111+
.config("spark.jars.packages", "uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.4") \
112112
.getOrCreate()
113113
```
114114

@@ -119,7 +119,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depe
119119
Launch the Python Spark REPL with the Spark Extension dependency (version ≥1.1.0) as follows:
120120

121121
```shell script
122-
pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.4
122+
pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.4
123123
```
124124

125125
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depending on your PySpark version.
@@ -129,7 +129,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depe
129129
Run your Python scripts that use PySpark via `spark-submit`:
130130

131131
```shell script
132-
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.4 [script.py]
132+
spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.4 [script.py]
133133
```
134134

135135
Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depending on your Spark version.
@@ -139,7 +139,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depe
139139
There are plenty of [Data Science notebooks](https://datasciencenotebook.org/) around. To use this library,
140140
add **a jar dependency** to your notebook using these **Maven coordinates**:
141141

142-
uk.co.gresearch.spark:spark-extension_2.12:2.14.0-3.4
142+
uk.co.gresearch.spark:spark-extension_2.12:2.14.1-3.4
143143

144144
Or [download the jar](https://mvnrepository.com/artifact/uk.co.gresearch.spark/spark-extension) and place it
145145
on a filesystem where it is accessible by the notebook, and reference that jar file directly.

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from setuptools.command.sdist import sdist
2323

2424

25-
jar_version = '2.14.1-3.5-SNAPSHOT'
25+
jar_version = '2.14.1-3.5'
2626
scala_version = '2.13.8'
2727
scala_compat_version = '.'.join(scala_version.split('.')[:2])
2828
spark_compat_version = jar_version.split('-')[1]

0 commit comments

Comments
 (0)