From 1c63520dec5692dc4bd8e9ca04c648f06d3431a7 Mon Sep 17 00:00:00 2001 From: Mike Sukmanowsky Date: Fri, 19 Jul 2013 15:48:38 -0400 Subject: [PATCH] Version bump to 0.2.3 --- CHANGES.txt | 1 + docs/conf.py | 2 +- serpextract/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index c929217..5ebd2ac 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v0.2.3, 2013-07-19 -- Unicode fixes and minor bug fix in parser.parse. v0.2.2, 2013-07-18 -- Improvements to test cases and major performance optimizations when using serpextract for a large number of SERP URLs. v0.2.1, 2013-07-17 -- Quick fix for engine lookup bug. v0.2.0, 2013-07-17 -- Add missing edge cases found in Piwik's Common.php for search engines. Significantly changes detection of SERPs (Google in particular). diff --git a/docs/conf.py b/docs/conf.py index 112075e..516f7a3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,7 @@ version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.2.2' +release = '0.2.3' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/serpextract/__init__.py b/serpextract/__init__.py index 6456e9f..54e8f48 100644 --- a/serpextract/__init__.py +++ b/serpextract/__init__.py @@ -1,2 +1,2 @@ from serpextract import * -__version__ = '0.2.1' +__version__ = '0.2.3' diff --git a/setup.py b/setup.py index b73fa4f..06b35c4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -version = '0.2.2' +version = '0.2.3' install_requires = ['iso3166 >= 0.4', 'pylru >= 1.0.3'] if sys.version_info <= (2,7):