Skip to content

Commit 6e44010

Browse files
committed
Bump Version [run doc]
1 parent f6ba0d1 commit 6e44010

File tree

13 files changed

+36
-20
lines changed

13 files changed

+36
-20
lines changed

CHANGELOG

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
=======
2+
6.1.3
3+
=======
4+
---------------------------
5+
New Features & Enhancements
6+
---------------------------
7+
8+
* [SPARKNLP-1286] GGUFRankingFinisher (#14653)
9+
* [SPARKNLP-1282] Adding improvements to Reader2Doc #14656
10+
* [SPARKNLP-1244] NerDLGraphChecker #14657
11+
12+
---------
13+
Bug Fixes
14+
---------
15+
None
16+
117
=======
218
6.1.2
319
=======
@@ -10,7 +26,7 @@ New Features & Enhancements
1026
---------
1127
Bug Fixes
1228
---------
13-
* Fixed
29+
* Fixed Issues with loading AutoGGUFVision models
1430

1531
=======
1632
6.1.1

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.1.2 pyspark==3.3.1
66+
$ pip install spark-nlp==6.1.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.1.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.1.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.1.2 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.1.3 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.1.2 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.1.3 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.1.2"
9+
version := "6.1.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.1.2" %}
2+
{% set version = "6.1.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: 8e7ed8e7c8da1b5de064456cfac01fefcf4159b7c63864051ced4c01201677f5
10+
sha256: fc1d8a2981a427a7ce6161a7cb2dc1eb20e79c90ed3063cd3afd08c8113f3060
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.1.2 # Version to be substituted in the documentation
27+
sparknlp_version: 6.1.3 # 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.1.2 # Version to be substituted in the documentation
30+
sparknlp_version: 6.1.3 # 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.1.2 pyspark==3.3.1
66+
$ pip install spark-nlp==6.1.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.1.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.1.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.1.2 has been tested and is compatible with the following runtimes:
162+
Spark NLP 6.1.3 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.1.2 has been tested and is compatible with the following EMR releases:
180+
Spark NLP 6.1.3 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.1.2', # Required
44+
version='6.1.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.1.2"
69+
__version__ = "6.1.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.1.2"
4+
SPARKNLP="6.1.3"
55
PYSPARK="3.4.4"
66

77
while getopts s:p:g option; do

0 commit comments

Comments
 (0)