diff --git a/CHANGE.md b/CHANGE.md index 16b6a8e..2745818 100755 --- a/CHANGE.md +++ b/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) diff --git a/README.md b/README.md index 297c186..e686aed 100755 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/conf.py b/docs/conf.py index ea22677..9ae6e26 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/nlpaug/__init__.py b/nlpaug/__init__.py index 18d69d6..e0b30ff 100755 --- a/nlpaug/__init__.py +++ b/nlpaug/__init__.py @@ -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' diff --git a/setup.py b/setup.py index 5bf7c9c..012d9ed 100755 --- a/setup.py +++ b/setup.py @@ -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",