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,