Skip to content

Commit e515cc1

Browse files
committed
release 1.1.10
1 parent 7d984cf commit e515cc1

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
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.10 Dec 23, 2021
5+
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
6+
* [Fix FrequencyMasking time range ](https://github.com/makcedward/nlpaug/pull/258)
7+
* [Remove unnecessary printout](https://github.com/makcedward/nlpaug/pull/263)
8+
* [Rollback ContextualWordEmbsForSentenceAug and AbstSummAug to use custom transformers API to reduce execution time]
9+
410
### 1.1.9 Dec 1, 2021
511
* [ReservedAug supports generating all combinations](https://github.com/makcedward/nlpaug/pull/251)
612
* [Rollback to use native HuggingFace API from Huggingface pipeline to solve slow performance issue](https://github.com/makcedward/nlpaug/issues/248)

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,11 @@ pip install librosa>=0.7.1 matplotlib
144144

145145
## Recent Changes
146146

147-
### 1.1.10 Jan , 2022
147+
### 1.1.10 Dec 23, 2021
148148
* [KeywordAug supports Turkish](https://github.com/makcedward/nlpaug/pull/261)
149149
* [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]
150152

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

conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
build_name='.'
44
pkg_name='nlpaug'
55
py_vers=(3.5 3.6 3.7 3.8 3.9)
6-
pkg_ver='1.1.9'
6+
pkg_ver='1.1.10'
77
conda_dir="/home/edward/anaconda3/conda-bld"
88

99
echo "Building conda package ..."

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.9'
77+
version = '1.1.10'
7878
# The full version, including alpha/beta/rc tags.
79-
release = '1.1.9'
79+
release = '1.1.10'
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.9'
6+
__version__ = '1.1.10'
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.9",
15+
version="1.1.10",
1616
author="Edward Ma",
1717
author_email="[email protected]",
1818
url="https://github.com/makcedward/nlpaug",

test/run_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_context_word_embs_sentence'))
4343
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_abst_summ'))
4444
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_lambada'))
45+
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.sentence.test_random'))
4546

4647
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.word.test_word'))
4748
# suites.append(unittest.TestLoader().loadTestsFromName('augmenter.word.test_tfidf'))

0 commit comments

Comments
 (0)