Skip to content

Commit

Permalink
Prepare for the 3.14.0 release.
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Bompard <[email protected]>
  • Loading branch information
abompard committed Mar 27, 2019
1 parent 94de0d5 commit e843c1f
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 6 deletions.
2 changes: 1 addition & 1 deletion devel/ci/bodhi-ci
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion devel/ci/cico.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
7 changes: 4 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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', '#')}
28 changes: 28 additions & 0 deletions docs/user/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e843c1f

Please sign in to comment.