Skip to content

Commit

Permalink
Merge pull request #166 from SUSE/release
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
frozenIceage committed Jun 27, 2024
2 parents 6a7f2eb + 2ba8530 commit ce2821e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.9.1"
__version__ = "0.10.0"
2 changes: 1 addition & 1 deletion osctiny/extensions/bs_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def create(self, actions: typing.Iterable[Action],
:param ignore_build_state: Skip the build state check
:return: Request ID
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.10.0
"""
request = E.request(*(action.asxml() for action in actions),
*(review.asxml() for review in reviewers or []))
Expand Down
2 changes: 1 addition & 1 deletion osctiny/models/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Models for requests
^^^^^^^^^^^^^^^^^^^
.. versionadded:: {{ NEXT_RELEASE }}
.. versionadded:: 0.10.0
"""
# pylint: disable=missing-function-docstring,no-member
# Note: The `no-member` rule needs to be disabled due to this bug:
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.9.1',
version='0.10.0',
description='Client API for openSUSE BuildService',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit ce2821e

Please sign in to comment.