Skip to content

Commit

Permalink
Merge pull request #157 from SUSE/release
Browse files Browse the repository at this point in the history
Release 0.9.0
  • Loading branch information
frozenIceage committed Apr 22, 2024
2 parents d9b8a2e + 46746c3 commit 684aebf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.8.2"
__version__ = "0.9.0"
2 changes: 1 addition & 1 deletion osctiny/extensions/buildresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_status_and_build_id(self, project, repo, arch):
:return: Objectified XML element
:rtype: lxml.objectify.ObjectifiedElement
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.9.0
"""
response = self.osc.request(
method="GET",
Expand Down
2 changes: 1 addition & 1 deletion osctiny/extensions/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
https://openbuildservice.org/help/manuals/obs-user-guide/cha.obs.best-practices.webuiusage#staging_how_to
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.9.0
"""
import typing
from urllib.parse import urljoin
Expand Down
4 changes: 2 additions & 2 deletions osctiny/osc.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Osc:
* Removed the ``cache`` parameter
* Added the ``attributes`` extension
.. versionchanged:: {{NEXT_RELEASE}}
.. versionchanged:: 0.9.0
* Added the ``staging`` extension
.. _SSL Cert Verification:
Expand Down Expand Up @@ -392,7 +392,7 @@ def handle_params(self, url: str, method: str, params: ParamsType) \
Added the ``url`` and ``method`` parameters
.. versionchanged:: {{ NEXT_RELEASE }}
.. versionchanged:: 0.9.0
Instances of ``ObjectifiedElement`` are accepted for argument ``params``
"""
Expand Down
2 changes: 1 addition & 1 deletion osctiny/utils/xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_objectified_xml(response: typing.Union[Response, str, bytes]) -> Objecti
Carved out from ``Osc`` class
.. versionchanged:: {{ NEXT_RELEASE }}
.. versionchanged:: 0.9.0
Accepts also bytes
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.8.2',
version='0.9.0',
description='Client API for openSUSE BuildService',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 684aebf

Please sign in to comment.