Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mloesch committed May 17, 2020
1 parent cda5e8c commit 14ef88e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,3 +8,4 @@ coverage.xml
.coverage*
.idea
.eggs/
.DS_Store
14 changes: 12 additions & 2 deletions CHANGES.rst
@@ -1,6 +1,18 @@
Changelog
=========

Version 0.7.0
-------------

May 17, 2020

- method for record metadata extraction has been extracted (``Record.get_metadata()``) to make subclassing easier
(https://github.com/mloesch/sickle/pull/38)
- retryable HTTP status codes and default wait time between retries can be customized (https://github.com/mloesch/sickle/issues/21 https://github.com/mloesch/sickle/pull/41)
- retry logic has been fixed: ``max_retries`` parameter now refers to no. of retries, not counting the initial request anymore
- the default number of HTTP retries has been set to 0 (= no retries)
- fix for https://github.com/mloesch/sickle/pull/39

Version 0.6.5
-------------

Expand All @@ -9,7 +21,6 @@ January 12, 2020
- fix: repr methods where causing an exception on Python 3 (https://github.com/mloesch/sickle/issues/30)



Version 0.6.4
-------------

Expand All @@ -18,7 +29,6 @@ October 2, 2018
- fix: resumption token with empty body indicates last response (https://github.com/mloesch/sickle/issues/25)



Version 0.6.3
-------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -51,7 +51,7 @@
# built documents.
#
# The short X.Y version.
version = '0.6.5'
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@

setup(
name='Sickle',
version='0.6.5',
version='0.7.0',
url='http://github.com/mloesch/sickle',
license='BSD',
author='Mathias Loesch',
Expand Down
2 changes: 1 addition & 1 deletion sickle/__init__.py
Expand Up @@ -8,7 +8,7 @@
:copyright: Copyright 2015 Mathias Loesch
"""

__version__ = '0.6.5'
__version__ = '0.7.0'

from sickle.response import OAIResponse
from .app import Sickle

0 comments on commit 14ef88e

Please sign in to comment.