Skip to content

Commit d44804d

Browse files
committed
release 1.1.11
1 parent 00df595 commit d44804d

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
NLPAUG Change Log
22
================
33

4+
### 1.1.11 Jul 6, 2022
5+
* [Return list of output](https://github.com/makcedward/nlpaug/issues/302)
6+
* [Fix download util](https://github.com/makcedward/nlpaug/issues/301)
7+
* [Fix lambda label misalignment](https://github.com/makcedward/nlpaug/issues/295)
8+
* [Add language pack reference link for SynonymAug](https://github.com/makcedward/nlpaug/issues/289)
9+
410
### 1.1.10 Dec 23, 2021
511
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
612
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,17 @@ http://paraphrase.org/#/download
139139

140140
If you use PitchAug, SpeedAug and VtlpAug, installing the following dependencies as well
141141
```bash
142-
pip install librosa>=0.7.1 matplotlib
142+
pip install librosa>=0.9.1 matplotlib
143143
```
144144

145145
## Recent Changes
146146

147-
### 1.1.10 Dec 23, 2021
148-
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
149-
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)
150-
* [Remove unnecessary printout](https://github.com/makcedward/nlpaug/pull/263)
151-
* [Rollback ContextualWordEmbsForSentenceAug and AbstSummAug to use custom transformers API to reduce execution time]
147+
### 1.1.11 Jul 6, 2022
148+
* [Return list of output](https://github.com/makcedward/nlpaug/issues/302)
149+
* [Fix download util](https://github.com/makcedward/nlpaug/issues/301)
150+
* [Fix lambda label misalignment](https://github.com/makcedward/nlpaug/issues/295)
151+
* [Add language pack reference link for SynonymAug](https://github.com/makcedward/nlpaug/issues/289)
152+
152153

153154
See [changelog](https://github.com/makcedward/nlpaug/blob/master/CHANGE.md) for more details.
154155

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ def __getattr__(cls, name):
7474
# built documents.
7575
#
7676
# The short X.Y version.
77-
version = '1.1.11_dev'
77+
version = '1.1.11'
7878
# The full version, including alpha/beta/rc tags.
79-
release = '1.1.11_dev'
79+
release = '1.1.11'
8080

8181
# The language for content autogenerated by Sphinx. Refer to documentation
8282
# for a list of supported languages.

nlpaug/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__all__ = ['base_augmenter']
55

6-
__version__ = '1.1.11_dev'
6+
__version__ = '1.1.11'
77
__description__ = 'Natural language processing augmentation library for deep neural networks.'
88
__url__ = 'https://github.com/makcedward/nlpaug'
99
__author__ = 'Edward Ma'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="nlpaug",
15-
version="1.1.11_dev",
15+
version="1.1.11",
1616
author="Edward Ma",
1717
author_email="makcedward@gmail.com",
1818
url="https://github.com/makcedward/nlpaug",

0 commit comments

Comments
 (0)