From d420bc0ececf9730e5667eb44a91c40d9c6d23ab Mon Sep 17 00:00:00 2001 From: He Hao Date: Wed, 13 May 2020 22:24:04 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.5=20=E2=86=92=200.0.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- text_preprocessing/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index a55ccd2..0a85db4 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -__version__ = '0.0.5' \ No newline at end of file +__version__ = '0.0.6' \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 696db19..b4c1ab8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.5 +current_version = 0.0.6 commit = True tag = True diff --git a/setup.py b/setup.py index f58f5e2..e94d244 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def parse_requirements(fn): setup( name='text_preprocessing', - version='0.0.5', + version='0.0.6', description="A python package for text preprocessing task in natural language processing", long_description=description, url='https://github.com/berknology/text-preprocessing', diff --git a/text_preprocessing/__init__.py b/text_preprocessing/__init__.py index f1554f0..286bbe9 100644 --- a/text_preprocessing/__init__.py +++ b/text_preprocessing/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.5' +__version__ = '0.0.6' from .text_preprocessing import (to_lower, to_upper, remove_number, remove_itemized_bullet_and_numbering, remove_url, remove_punctuation, remove_special_character, keep_alpha_numeric, remove_whitespace,