From 16288a2972da57585de668a831b49016f737c809 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Thu, 9 Feb 2023 15:04:54 +0100 Subject: [PATCH] release 1.0.0b5 --- NEWS | 6 ++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index bd433a08..b37c05f8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +1.0.0b5 + - rq list: Fix a traceback when --type is not specified + - core.checkout_package(): Use pathlib.Path + - connection: Retry all, not just default allowed methods + - connection: Wait between retries + 1.0.0b4 - Fix regressions to osc 0.x: - mv: Fix traceback due to missing target file name diff --git a/contrib/osc.spec b/contrib/osc.spec index d9774701..01f12570 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -31,7 +31,7 @@ %endif Name: osc -Version: 1.0.0~b4 +Version: 1.0.0~b5 Release: 0 Summary: Command-line client for the Open Build Service License: GPL-2.0-or-later diff --git a/osc/__init__.py b/osc/__init__.py index 9f25e06d..012f45ab 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ __all__ = [ from .util import git_version -__version__ = git_version.get_version('1.0.0~b4') +__version__ = git_version.get_version('1.0.0~b5') # vim: sw=4 et