Skip to content

Commit

Permalink
Merge pull request #198 from makcedward/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
makcedward authored Jan 5, 2021
2 parents 3df5ed2 + e2fea7b commit 6826d98
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nlpaug/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion test/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'test/model/word/',
'test/util/selection/',
'test/flow/',
'test/profiling/sentence/',
# 'test/profiling/sentence/',
]

for test_dir in test_dirs:
Expand Down

0 comments on commit 6826d98

Please sign in to comment.