diff --git a/CHANGE.md b/CHANGE.md index 79911b6..1532c0c 100755 --- a/CHANGE.md +++ b/CHANGE.md @@ -1,6 +1,10 @@ NLPAUG Change Log ================ +### 1.1.2, Jan 4, 2021 +* Add NormalizeAug (audio) and PolarityInverseAug (audio) +* Fix [#191](https://github.com/makcedward/nlpaug/issues/191), [#192](https://github.com/makcedward/nlpaug/issues/192), [#194](https://github.com/makcedward/nlpaug/issues/194), Fix [#196](https://github.com/makcedward/nlpaug/issues/196) + ### 1.1.1, Dec 12, 2020 * Fix [#182](https://github.com/makcedward/nlpaug/issues/182), [#184](https://github.com/makcedward/nlpaug/issues/184), [#185](https://github.com/makcedward/nlpaug/issues/185), [#187](https://github.com/makcedward/nlpaug/issues/187) diff --git a/README.md b/README.md index acf4265..8233603 100755 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ pip install librosa>=0.7.1 matplotlib ## Recent Changes -### 1.1.2dev, Dec, 2020 +### 1.1.2, Jan 4, 2021 * Add NormalizeAug (audio) and PolarityInverseAug (audio) * Fix [#191](https://github.com/makcedward/nlpaug/issues/191), [#192](https://github.com/makcedward/nlpaug/issues/192), [#194](https://github.com/makcedward/nlpaug/issues/194), Fix [#196](https://github.com/makcedward/nlpaug/issues/196) diff --git a/docs/conf.py b/docs/conf.py index 3d7b62b..0c03c90 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.2dev' +version = '1.1.2' # The full version, including alpha/beta/rc tags. -release = '1.1.2dev' +release = '1.1.2' # 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 4623765..1504e1e 100755 --- a/nlpaug/__init__.py +++ b/nlpaug/__init__.py @@ -3,7 +3,7 @@ __all__ = ['base_augmenter'] -__version__ = '1.1.2dev' +__version__ = '1.1.2' __description__ = 'Natural language processing augmentation library for deep neural networks.' __url__ = 'https://github.com/makcedward/nlpaug' __author__ = 'Edward Ma' diff --git a/test/run_test.py b/test/run_test.py index b4fa172..d22a5f6 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -23,7 +23,7 @@ 'test/model/word/', 'test/util/selection/', 'test/flow/', - 'test/profiling/sentence/', + # 'test/profiling/sentence/', ] for test_dir in test_dirs: