Skip to content

Commit ad2ee11

Browse files
committed
Bump Version [run doc]
1 parent 3479083 commit ad2ee11

File tree

13 files changed

+35
-19
lines changed

13 files changed

+35
-19
lines changed

CHANGELOG

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
=======
2+
6.2.1
3+
=======
4+
---------------------------
5+
New Features & Enhancements
6+
---------------------------
7+
8+
* [SPARKNLP-1306] Adding hierarchical support for Readers
9+
* [SPARKNLP-1297] NerDLApproach Optimizations
10+
* XML Reader and Reader2Doc Improvements
11+
12+
---------
13+
Bug Fixes
14+
---------
15+
* Add Java installation to Colab setup script
16+
117
=======
218
6.2.0
319
=======

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.0 pyspark==3.3.1
66+
$ pip install spark-nlp==6.2.1 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.0* 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.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
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.0 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.2.1 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.0 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.2.1 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.0"
9+
version := "6.2.1"
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.2.0" %}
2+
{% set version = "6.2.1" %}
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: 7cbeafc7d01afcda6f7dbb76cfb7fd34893fd2c98c4301d4d692a8962cd69f70
10+
sha256: c44a9985d7755cd25e921d41a992af281b25cea424d0a00ab70b8eaf5d531bfa
1111

1212
build:
1313
noarch: python

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.0 # Version to be substituted in the documentation
27+
sparknlp_version: 6.2.1 # 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.0 # Version to be substituted in the documentation
30+
sparknlp_version: 6.2.1 # 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.0 pyspark==3.3.1
66+
$ pip install spark-nlp==6.2.1 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.0* 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.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
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.0 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.2.1 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.0 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.2.1 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.0', # Required
44+
version='6.2.1', # 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.0"
69+
__version__ = "6.2.1"
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.0"
4+
SPARKNLP="6.2.1"
55
PYSPARK="3.4.4"
66

77
while getopts s:p:g option; do

0 commit comments

Comments
 (0)