diff --git a/CHANGES.txt b/CHANGES.txt index 48f6da9..0258a05 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -13,6 +13,7 @@ v0.4.4, Thu Sep 25 -- Added dependencies installation to setup.py v0.4.5, Thu Sep 25 -- Added interface to local indico server v0.4.6, Fri Oct 27 -- Updated to point to new indico api servers, cleaner REST API v0.4.8, Fri Nov 7 -- Updated API interface to include new text tags API -v0.4.11, Wed Dec 18 -- Updated tests for text tags -v0.4.12, Thu Dec 19 -- Added batch support interface -v0.4.13, Thu Dec 19 -- Added optional arguments to text tags API \ No newline at end of file +v0.4.11, Thu Dec 18 -- Updated tests for text tags +v0.4.12, Fri Dec 19 -- Added batch support interface +v0.4.13, Fri Dec 19 -- Added optional arguments to text tags API +v0.4.14, Sat Dec 20 -- Fix for batch image features preprocessing, increased test coverage diff --git a/indicoio/__init__.py b/indicoio/__init__.py index 17b4702..4bd6e42 100644 --- a/indicoio/__init__.py +++ b/indicoio/__init__.py @@ -3,7 +3,7 @@ import indicoio.config as config JSON_HEADERS = {'Content-type': 'application/json', 'Accept': 'text/plain'} -Version, version, __version__, VERSION = ('0.4.13',) * 4 +Version, version, __version__, VERSION = ('0.4.14',) * 4 from indicoio.text.sentiment import political, posneg from indicoio.text.sentiment import posneg as sentiment diff --git a/setup.py b/setup.py index fc4825b..392f484 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name="IndicoIo", - version='0.4.13', + version='0.4.14', packages=[ "indicoio", "indicoio.text",