Skip to content

Commit 8d840eb

Browse files
committed
Bump Version [skip test]
1 parent 472a236 commit 8d840eb

File tree

11 files changed

+33
-18
lines changed

11 files changed

+33
-18
lines changed

CHANGELOG

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
=======
2-
6.0.1
2+
6.0.3
3+
=======
4+
----------------
5+
New Features & Enhancements
6+
----------------
7+
* Introducing E5-V Universal Embeddings (SPARKNLP-1143)
8+
* Enhanced Chunking Strategies (SPARKNLP-1125)
9+
* New XML Reader (SPARKNLP-1119)
10+
11+
----------------
12+
Bug Fixes
13+
----------------
14+
* Fixed typo for Excel reader notebook
15+
16+
=======
17+
6.0.2
318
=======
419
----------------
520
New Features & Enhancements

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $ java -version
6363
$ conda create -n sparknlp python=3.7 -y
6464
$ conda activate sparknlp
6565
# spark-nlp by default is based on pyspark 3.x
66-
$ pip install spark-nlp==6.0.2 pyspark==3.3.1
66+
$ pip install spark-nlp==6.0.3 pyspark==3.3.1
6767
```
6868

6969
In Python console or Jupyter `Python3` kernel:
@@ -129,7 +129,7 @@ For a quick example of using pipelines and models take a look at our official [d
129129

130130
### Apache Spark Support
131131

132-
Spark NLP *6.0.2* has been built on top of Apache Spark 3.4 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, 3.3.x, 3.4.x, and 3.5.x
132+
Spark NLP *6.0.3* has been built on top of Apache Spark 3.4 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, 3.3.x, 3.4.x, and 3.5.x
133133

134134
| Spark NLP | Apache Spark 3.5.x | Apache Spark 3.4.x | Apache Spark 3.3.x | Apache Spark 3.2.x | Apache Spark 3.1.x | Apache Spark 3.0.x | Apache Spark 2.4.x | Apache Spark 2.3.x |
135135
|-----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
@@ -159,7 +159,7 @@ Find out more about 4.x `SparkNLP` versions in our official [documentation](http
159159

160160
### Databricks Support
161161

162-
Spark NLP 6.0.2 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.0.3 has been tested and is compatible with the following runtimes:
163163

164164
| **CPU** | **GPU** |
165165
|--------------------|--------------------|
@@ -176,7 +176,7 @@ We are compatible with older runtimes. For a full list check databricks support
176176

177177
### EMR Support
178178

179-
Spark NLP 6.0.2 has been tested and is compatible with the following EMR releases:
179+
Spark NLP 6.0.3 has been tested and is compatible with the following EMR releases:
180180

181181
| **EMR Release** |
182182
|--------------------|

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name := getPackageName(is_silicon, is_gpu, is_aarch64)
66

77
organization := "com.johnsnowlabs.nlp"
88

9-
version := "6.0.2"
9+
version := "6.0.3"
1010

1111
(ThisBuild / scalaVersion) := scalaVer
1212

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% set name = "spark-nlp" %}
2-
{% set version = "6.0.2" %}
2+
{% set version = "6.0.3" %}
33

44
package:
55
name: {{ name|lower }}
66
version: {{ version }}
77

88
source:
99
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/spark_nlp-{{ version }}.tar.gz
10-
sha256: 8b97358206809a123076bcd58aba3b6487086c95c6370be6a9a34f0d5568b43d
10+
sha256: ff09f27c512401cff1ec3af572069b2e2af35b87a0f6737c5340538bac10faf7
1111

1212
build:
1313
noarch: python

python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $ java -version
6363
$ conda create -n sparknlp python=3.7 -y
6464
$ conda activate sparknlp
6565
# spark-nlp by default is based on pyspark 3.x
66-
$ pip install spark-nlp==6.0.2 pyspark==3.3.1
66+
$ pip install spark-nlp==6.0.3 pyspark==3.3.1
6767
```
6868

6969
In Python console or Jupyter `Python3` kernel:
@@ -129,7 +129,7 @@ For a quick example of using pipelines and models take a look at our official [d
129129

130130
### Apache Spark Support
131131

132-
Spark NLP *6.0.2* has been built on top of Apache Spark 3.4 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, 3.3.x, 3.4.x, and 3.5.x
132+
Spark NLP *6.0.3* has been built on top of Apache Spark 3.4 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, 3.3.x, 3.4.x, and 3.5.x
133133

134134
| Spark NLP | Apache Spark 3.5.x | Apache Spark 3.4.x | Apache Spark 3.3.x | Apache Spark 3.2.x | Apache Spark 3.1.x | Apache Spark 3.0.x | Apache Spark 2.4.x | Apache Spark 2.3.x |
135135
|-----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
@@ -159,7 +159,7 @@ Find out more about 4.x `SparkNLP` versions in our official [documentation](http
159159

160160
### Databricks Support
161161

162-
Spark NLP 6.0.2 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.0.3 has been tested and is compatible with the following runtimes:
163163

164164
| **CPU** | **GPU** |
165165
|--------------------|--------------------|
@@ -176,7 +176,7 @@ We are compatible with older runtimes. For a full list check databricks support
176176

177177
### EMR Support
178178

179-
Spark NLP 6.0.2 has been tested and is compatible with the following EMR releases:
179+
Spark NLP 6.0.3 has been tested and is compatible with the following EMR releases:
180180

181181
| **EMR Release** |
182182
|--------------------|

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# project code, see
4242
# https://packaging.python.org/en/latest/single_source_version.html
4343

44-
version='6.0.2', # Required
44+
version='6.0.3', # Required
4545

4646
# This is a one-line description or tagline of what your project does. This
4747
# corresponds to the 'Summary' metadata field:

python/sparknlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
annotators = annotator
6767
embeddings = annotator
6868

69-
__version__ = "6.0.2"
69+
__version__ = "6.0.3"
7070

7171

7272
def start(gpu=False,

scripts/colab_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#default values for pyspark, spark-nlp, and SPARK_HOME
4-
SPARKNLP="6.0.2"
4+
SPARKNLP="6.0.3"
55
PYSPARK="3.4.4"
66

77
while getopts s:p:g option; do

scripts/kaggle_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
#default values for pyspark, spark-nlp, and SPARK_HOME
4-
SPARKNLP="6.0.2"
4+
SPARKNLP="6.0.3"
55
PYSPARK="3.2.3"
66

77
while getopts s:p:g option

scripts/sagemaker_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Default values for pyspark, spark-nlp, and SPARK_HOME
4-
SPARKNLP="6.0.2"
4+
SPARKNLP="6.0.3"
55
PYSPARK="3.2.3"
66

77
echo "Setup SageMaker for PySpark $PYSPARK and Spark NLP $SPARKNLP"

src/main/scala/com/johnsnowlabs/util/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
package com.johnsnowlabs.util
1818

1919
object Build {
20-
val version: String = "6.0.2"
20+
val version: String = "6.0.3"
2121
}

0 commit comments

Comments
 (0)