Skip to content

Commit

Permalink
release 1.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
makcedward committed Jul 7, 2022
1 parent 00df595 commit d44804d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGE.md
@@ -1,6 +1,12 @@
NLPAUG Change Log
================

### 1.1.11 Jul 6, 2022
* [Return list of output](https://github.com/makcedward/nlpaug/issues/302)
* [Fix download util](https://github.com/makcedward/nlpaug/issues/301)
* [Fix lambda label misalignment](https://github.com/makcedward/nlpaug/issues/295)
* [Add language pack reference link for SynonymAug](https://github.com/makcedward/nlpaug/issues/289)

### 1.1.10 Dec 23, 2021
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)
Expand Down
13 changes: 7 additions & 6 deletions README.md
Expand Up @@ -139,16 +139,17 @@ http://paraphrase.org/#/download

If you use PitchAug, SpeedAug and VtlpAug, installing the following dependencies as well
```bash
pip install librosa>=0.7.1 matplotlib
pip install librosa>=0.9.1 matplotlib
```

## Recent Changes

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


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

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -74,9 +74,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '1.1.11_dev'
version = '1.1.11'
# The full version, including alpha/beta/rc tags.
release = '1.1.11_dev'
release = '1.1.11'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nlpaug/__init__.py
Expand Up @@ -3,7 +3,7 @@

__all__ = ['base_augmenter']

__version__ = '1.1.11_dev'
__version__ = '1.1.11'
__description__ = 'Natural language processing augmentation library for deep neural networks.'
__url__ = 'https://github.com/makcedward/nlpaug'
__author__ = 'Edward Ma'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@

setup(
name="nlpaug",
version="1.1.11_dev",
version="1.1.11",
author="Edward Ma",
author_email="makcedward@gmail.com",
url="https://github.com/makcedward/nlpaug",
Expand Down

0 comments on commit d44804d

Please sign in to comment.