diff --git a/devel/ci/bodhi-ci b/devel/ci/bodhi-ci index f805e1a7ec..3c630435a9 100755 --- a/devel/ci/bodhi-ci +++ b/devel/ci/bodhi-ci @@ -631,7 +631,7 @@ class DiffCoverJob(Job): self.archive_path = archive_path self._command = ['/usr/bin/diff-cover', '/results/coverage.xml', - '--compare-branch=origin/3.13', '--fail-under=100'] + '--compare-branch=origin/3.14', '--fail-under=100'] self._label = '{}-py{}'.format(self._label, pyver) self._convert_command_for_container(archive=archive, archive_path=archive_path) diff --git a/devel/ci/cico.pipeline b/devel/ci/cico.pipeline index d03924b850..6e15bcfc99 100644 --- a/devel/ci/cico.pipeline +++ b/devel/ci/cico.pipeline @@ -131,7 +131,7 @@ def test_release = { String release -> node('bodhi') { checkout scm - // diff-cover needs to be able to reference origin/3.13, so let's just fetch all branches. + // diff-cover needs to be able to reference origin/3.14, so let's just fetch all branches. sh 'git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/*' sh 'git fetch -p --no-tags origin' diff --git a/docs/conf.py b/docs/conf.py index 8667050a5c..08e1f35b6f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '3.13' +version = '3.14' # The full version, including alpha/beta/rc tags. -release = '3.13.3' +release = '3.14.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -304,4 +304,5 @@ extlinks = { 'commit': ('https://github.com/fedora-infra/bodhi/commit/%s', ''), - 'issue': ('https://github.com/fedora-infra/bodhi/issues/%s', '#')} + 'issue': ('https://github.com/fedora-infra/bodhi/issues/%s', '#'), + 'pr': ('https://github.com/fedora-infra/bodhi/pull/%s', '#')} diff --git a/docs/user/release_notes.rst b/docs/user/release_notes.rst index b1869a0483..14279b25fe 100644 --- a/docs/user/release_notes.rst +++ b/docs/user/release_notes.rst @@ -2,6 +2,34 @@ Release notes ============= + +v3.14.0 +------- + +This is a feature release. + + +Features +^^^^^^^^ + +* Use ``flatpaks/`` namespace for Flatpaks, and make it configurable. + (:pr:`2924`, :pr:`3052`). +* Add json response handler for server internal errors (:issue:`3035`). + + +Bug fixes +^^^^^^^^^ + +* Fix HTTP 500 errors when viewing composes (:issue:`2826`). +* Set log level to ERROR in bodhi-approve-testing (:issue:`3021`). + + +Development improvements +^^^^^^^^^^^^^^^^^^^^^^^^ + +* Log why buildroot overrides are expired (:issue:`3060`). + + v3.13.3 ------- diff --git a/setup.py b/setup.py index 00b7207c5d..7262167a57 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def get_requirements(requirements_file='requirements.txt'): here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() -VERSION = '3.13.3' +VERSION = '3.14.0' # Possible options are at https://pypi.python.org/pypi?%3Aaction=list_classifiers CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable',