Skip to content

Commit

Permalink
release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
makcedward committed Mar 7, 2021
1 parent d4a2701 commit 7618bd9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
NLPAUG Change Log
================

### 1.1.3, Mar 7, 2021
* Add multi language (DE, ES, FR, HE, IT, NL, PL and UK) support to KeyboardAug (Special thanks to Binoy Dalal)

### 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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,8 @@ pip install librosa>=0.7.1 matplotlib

## Recent Changes

### 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.3, Mar 7, 2021
* Add multi language (DE, ES, FR, HE, IT, NL, PL and UK) support to KeyboardAug (Special thanks to Binoy Dalal)

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

Expand Down
4 changes: 1 addition & 3 deletions conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
build_name='.'
pkg_name='nlpaug'
py_vers=(3.5 3.6 3.7 3.8)
pkg_ver='1.1.2'
pkg_ver='1.1.3'
conda_dir="/home/edward/anaconda3/envs/nlpaug_master/conda-bld"

echo "Building conda package ..."
Expand All @@ -30,5 +30,3 @@ do
anaconda upload --force $file
done
done

anaconda upload --force "$conda_dir"/linux-64/"$pkg_name"*"$pkg_ver"*.tar.bz2
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.2'
version = '1.1.3'
# The full version, including alpha/beta/rc tags.
release = '1.1.2'
release = '1.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "nlpaug" %}
{% set version = "1.1.1" %}
{% set version = "1.1.3" %}

package:
name: "{{ name|lower }}"
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.2'
__version__ = '1.1.3'
__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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="nlpaug",
version="1.1.2",
version="1.1.3",
author="Edward Ma",
author_email="[email protected]",
url="https://github.com/makcedward/nlpaug",
Expand Down

0 comments on commit 7618bd9

Please sign in to comment.