From b58527fa1d724f1b304e4fd88cfa683fb84c5b6a Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Mon, 3 Apr 2023 16:04:33 +0200 Subject: [PATCH] Release notes 1.32.1 Related: https://pagure.io/koji/issue/3764 --- docs/source/release_notes/release_notes.rst | 1 + .../release_notes/release_notes_1.32.1.rst | 70 +++++++++++++++++++ koji.spec | 2 +- koji/_version.py | 2 +- 4 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 docs/source/release_notes/release_notes_1.32.1.rst diff --git a/docs/source/release_notes/release_notes.rst b/docs/source/release_notes/release_notes.rst index 5581bd5e..92a9946b 100644 --- a/docs/source/release_notes/release_notes.rst +++ b/docs/source/release_notes/release_notes.rst @@ -5,6 +5,7 @@ Release Notes .. toctree:: :maxdepth: 1 + release_notes_1.32.1 release_notes_1.32 release_notes_1.31.1 release_notes_1.31 diff --git a/docs/source/release_notes/release_notes_1.32.1.rst b/docs/source/release_notes/release_notes_1.32.1.rst new file mode 100644 index 00000000..819e5f55 --- /dev/null +++ b/docs/source/release_notes/release_notes_1.32.1.rst @@ -0,0 +1,70 @@ + +Koji 1.32.1 Release notes +========================= + +All changes can be found in `the roadmap `_. +Most important changes are listed here. + + +Migrating from Koji 1.32 +------------------------ + +No special actions are needed. + +Security Fixes +-------------- + +None + +Client Changes +-------------- +**list-untagged: One space of double space before references** + +| PR: https://pagure.io/koji/pull-request/3731 + +Simple unification of output format. + +**Delete double check existing source tag, --batch option is invisible** + +| PR: https://pagure.io/koji/pull-request/3706 + +Option doesn't make sense for server-side clonetag anymore. + +System Changes +-------------- +**fix query for partially generated checksums** + +| PR: https://pagure.io/koji/pull-request/3692 +| PR: https://pagure.io/koji/pull-request/3694 + +Fix the query logic for new API ``getRPMChecksums``. + + +Plugins +------- +**ArgumentParser instead of ArgumentParser in sidetag CLI plugin** + +| PR: https://pagure.io/koji/pull-request/3740 + +Unified with the other code we've. This was the only place using +``ArgumentParser`` instead of ``OptionParser``. It is step back, but better for +testing. When we finally drop py2 code, it will be reverted. + +**Add missing argument in edit-sidetag help msg** + +| PR: https://pagure.io/koji/pull-request/3718 + +Fixed help message. + + +Documentation +------------- +**Fix timezone in clone-tag test case** + +| PR: https://pagure.io/koji/pull-request/3734 + +**Unify migration script Koji 1.31 -> 1.32** + +| PR: https://pagure.io/koji/pull-request/3697 + +Migration scripts were split to two files. Merged to one. diff --git a/koji.spec b/koji.spec index dc283507..bda4d299 100644 --- a/koji.spec +++ b/koji.spec @@ -83,7 +83,7 @@ %define release %{baserelease} %endif Name: koji -Version: 1.32.0 +Version: 1.32.1 Release: %{release}%{?dist} License: LGPL-2.1-only and GPL-2.0-or-later # the included arch lib from yum's rpmUtils is GPLv2+ diff --git a/koji/_version.py b/koji/_version.py index 61dfc24f..fa5596d9 100644 --- a/koji/_version.py +++ b/koji/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (1, 32, 0) +__version_info__ = (1, 32, 1) __version__ = '.'.join([str(x) for x in __version_info__])