From 7e72b3321d81c607eab2acfef56f088cd88ea1ec Mon Sep 17 00:00:00 2001 From: Alireza Savand Date: Thu, 22 Jan 2015 12:17:52 +0400 Subject: [PATCH] Bump version number to 2015.1.22 --- stop_words/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stop_words/__init__.py b/stop_words/__init__.py index 83db8a5..42a2ce2 100644 --- a/stop_words/__init__.py +++ b/stop_words/__init__.py @@ -1,6 +1,6 @@ import os -__VERSION__ = (2015, 1, 19) +__VERSION__ = (2015, 1, 22) CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) STOP_WORDS_DIR = os.path.join(CURRENT_DIR, 'stop-words/') STOP_WORDS_CACHE = {}