From efc113e25be122a70cfe45a3ec5af2144bb658a9 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 05 2019 10:09:48 +0000 Subject: Release 5.7.9 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 3d64092..12173c1 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,14 @@ Changelog This document records all notable changes to `Pagure `_. +5.7.9 (2019-09-05) +------------------ + +- Fix rendering badges on the PR list page +- Tweak when we show the merge and the rebase buttons +- Fix the logic around interacting with read-only databases in hooks +- Fix .diff and .patch generation for empty commits + 5.7.8 (2019-08-28) ------------------ diff --git a/doc/contributors.rst b/doc/contributors.rst index 43cb44d..28e36d2 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On August 28, 2019 (release 5.7.8) the list looks as follow: +On September 05, 2019 (release 5.7.9) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6630 Pierre-Yves Chibon + 6634 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh @@ -18,7 +18,7 @@ Number of commits Contributor 88 Farhaan Bukhsh 64 Slavek Kabrda 59 Johan Cwiklinski - 58 Julen Landa Alustiza + 59 Julen Landa Alustiza 50 Karsten Hopp 47 Mark Reynolds 32 Lubomír Sedlář diff --git a/files/pagure.spec b/files/pagure.spec index 496193d..1ff0571 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.7.8 +Version: 5.7.9 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Thu Sep 05 2019 Pierre-Yves Chibon - 5.7.9-1 +- Update to 5.7.9 + * Wed Aug 28 2019 Pierre-Yves Chibon - 5.7.8-1 - Update to 5.7.8 diff --git a/pagure/__init__.py b/pagure/__init__.py index dd569e1..56187c0 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.7.8" +__version__ = "5.7.9" __api_version__ = "0.29"