From 416104bb32d8d1dd42961b3f8691f87ee19f99f5 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 02 2019 13:47:59 +0000 Subject: Release 5.7.3 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 57e9fd0..4c172d3 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,13 @@ Changelog This document records all notable changes to `Pagure `_. +5.7.3 (2019-08-02) +------------------ + +- Fix the alembic revision adding support for allow_rebase on PRs to work with + mysql +- Make the doc build in sphinx with python3 by default + 5.7.2 (2019-07-30) ------------------ diff --git a/doc/contributors.rst b/doc/contributors.rst index 1fb7977..bd390cb 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On July 30, 2019 (release 5.7.2) the list looks as follow: +On August 2, 2019 (release 5.7.3) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6618 Pierre-Yves Chibon + 6621 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index 660549f..4082f90 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.7.2 +Version: 5.7.3 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Fri Aug 02 2019 Pierre-Yves Chibon - 5.7.3-1 +- Update to pagure 5.7.3 + * Tue Jul 30 2019 Pierre-Yves Chibon - 5.7.2-1 - Update to pagure 5.7.2 diff --git a/pagure/__init__.py b/pagure/__init__.py index a4f8d4b..1c93c6d 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.7.2" +__version__ = "5.7.3" __api_version__ = "0.29"