From 337e67b1db22e0cd9ea43e055b7eae666fc92db8 Mon Sep 17 00:00:00 2001 From: Mathias Loesch Date: Sun, 8 Apr 2018 15:23:53 +0200 Subject: [PATCH] Release 0.6.2 --- CHANGES.rst | 12 +++++++++++- docs/conf.py | 2 +- setup.py | 2 +- sickle/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4767aaa..f0c8ede 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,20 @@ Changelog ========= + + +Version 0.6.3 +------------- + +April 8, 2018 + +- fix unicode problems (issues 20 & 22) + + Version 0.6.2 ------------- -August 11, 2016 +August 11, 2017 - missing datestamp and identifier elements in record header don't break harvesting - lxml resolve_entities disabled (http://lxml.de/FAQ.html#how-do-i-use-lxml-safely-as-a-web-service-endpoint) diff --git a/docs/conf.py b/docs/conf.py index 1fb78ae..5b8579b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # built documents. # # The short X.Y version. -version = '0.6.2' +version = '0.6.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 1480f71..f4e7aa0 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='Sickle', - version='0.6.2', + version='0.6.3', url='http://github.com/mloesch/sickle', license='BSD', author='Mathias Loesch', diff --git a/sickle/__init__.py b/sickle/__init__.py index e4023d2..dbb9296 100644 --- a/sickle/__init__.py +++ b/sickle/__init__.py @@ -8,7 +8,7 @@ :copyright: Copyright 2015 Mathias Loesch """ -__version__ = '0.6.2' +__version__ = '0.6.3' from .app import Sickle from sickle.response import OAIResponse