Skip to content

Commit da7a6ce

Browse files
committed
Bump Version
1 parent 116d2a5 commit da7a6ce

File tree

12 files changed

+32
-17
lines changed

12 files changed

+32
-17
lines changed

CHANGELOG

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
=======
2+
6.2.2
3+
=======
4+
---------------------------
5+
New Features & Enhancements
6+
---------------------------
7+
8+
None
9+
10+
---------
11+
Bug Fixes
12+
---------
13+
* Fixes WordEmbeddings creating duplicate results
14+
* Minor fixes to NerDLApproach logging
15+
116
=======
217
6.2.1
318
=======

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.2.1 pyspark==3.3.1
66+
$ pip install spark-nlp==6.2.2 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.2.1* 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.2.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
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.2.1 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.2.2 has been tested and is compatible with the following runtimes:
163163

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

178178
### EMR Support
179179

180-
Spark NLP 6.2.1 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.2.2 has been tested and is compatible with the following EMR releases:
181181

182182
| **EMR Release** |
183183
|--------------------|

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.2.1"
9+
version := "6.2.2"
1010

1111
(ThisBuild / scalaVersion) := scalaVer
1212

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ baseurl : # does not include hostname
2424
title : Spark NLP
2525
description: > # this means to ignore newlines until "Language & timezone"
2626
High Performance NLP with Apache Spark
27-
sparknlp_version: 6.2.1 # Version to be substituted in the documentation
27+
sparknlp_version: 6.2.2 # Version to be substituted in the documentation
2828

2929

3030
## => Language and Timezone

docs/_config_local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ baseurl : # does not include hostname
2727
title : Spark NLP
2828
description: > # this means to ignore newlines until "Language & timezone"
2929
High Performance NLP with Apache Spark
30-
sparknlp_version: 6.2.1 # Version to be substituted in the documentation
30+
sparknlp_version: 6.2.2 # Version to be substituted in the documentation
3131

3232

3333
## => Language and Timezone

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.2.1 pyspark==3.3.1
66+
$ pip install spark-nlp==6.2.2 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.2.1* 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.2.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
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.2.1 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.2.2 has been tested and is compatible with the following runtimes:
163163

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

178178
### EMR Support
179179

180-
Spark NLP 6.2.1 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.2.2 has been tested and is compatible with the following EMR releases:
181181

182182
| **EMR Release** |
183183
|--------------------|

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.2.1', # Required
44+
version='6.2.2', # 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.2.1"
69+
__version__ = "6.2.2"
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.2.1"
4+
SPARKNLP="6.2.2"
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.2.1"
4+
SPARKNLP="6.2.2"
55
PYSPARK="3.2.3"
66

77
while getopts s:p:g option

0 commit comments

Comments
 (0)