Skip to content

Commit

Permalink
Release 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ChHuang authored and ChHuang committed Aug 5, 2024
1 parent a082749 commit a3b0621
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion osctiny/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__all__ = ['Osc', 'bs_requests', 'buildresults', 'comments', 'packages',
'projects', 'search', 'users']
__version__ = "0.10.1"
__version__ = "0.10.2"
2 changes: 1 addition & 1 deletion osctiny/osc.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Osc:
.. versionchanged:: 0.9.0
* Added the ``staging`` extension
.. versionchanged:: {{ NEXT_RELEASE }}
.. versionchanged:: 0.10.2
* Deprecated ``default_connection_retries`` and ``default_retry_timeout``
* Introduced :py:class:`osctiny.utils.session.RetryPolicy`
Expand Down
4 changes: 2 additions & 2 deletions osctiny/utils/cookies.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Utilities for cookies
^^^^^^^^^^^^^^^^^^^^^
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.10.2
"""
from http.cookiejar import LWPCookieJar
from io import StringIO
Expand Down Expand Up @@ -43,7 +43,7 @@ def get_jar(cls) -> LWPCookieJar:
"""
Get cookies from a persistent osc cookiejar, if it exists
.. versionchanged:: {{ NEXT_RELEASE }}
.. versionchanged:: 0.10.2
Converted from function ``get_cookie_jar``
"""
path = cls.get_cookie_path()
Expand Down
2 changes: 1 addition & 1 deletion osctiny/utils/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
HTTP Session
^^^^^^^^^^^^
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.10.2
"""
from base64 import b64encode
import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _filter(requires):

setup(
name='osc-tiny',
version='0.10.1',
version='0.10.2',
description='Client API for openSUSE BuildService',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a3b0621

Please sign in to comment.