From 12b779fa41875bd864733abd7cda0ed2a4411758 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 28 2019 10:50:51 +0000 Subject: Release 5.7.8 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 820da6c..3d64092 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,34 @@ Changelog This document records all notable changes to `Pagure `_. +5.7.8 (2019-08-28) +------------------ + +- themes/srcfpo: Fix some csp errors +- themes/srcfpo: Fix error message when interacting with the release-monitoring + button +- themes/srcfpo: Show the release-monitoring dropdown only on authenticated + users +- themes/srcfpo: Fix capitalization incoherency +- Fix url on the invalid token error message +- Fix typo on the pull request merge error message + +5.7.7 (2019-08-21) +------------------ + +- Allow cross-project API token to open pull-request +- Move the button to change the anitya status to use POST requests + +5.7.6 (2019-08-21) +------------------ + +- Allow updating PRs via the API using cross-project tokens + +5.7.5 (2019-08-21) +------------------ + +- Fix the logic to make the merge button appear on pull-request + 5.7.4 (2019-08-10) ------------------ diff --git a/doc/contributors.rst b/doc/contributors.rst index 60ec4a6..43cb44d 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 21, 2019 (release 5.7.7) the list looks as follow: +On August 28, 2019 (release 5.7.8) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6629 Pierre-Yves Chibon + 6630 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 - 52 Julen Landa Alustiza + 58 Julen Landa Alustiza 50 Karsten Hopp 47 Mark Reynolds 32 Lubomír Sedlář diff --git a/files/pagure.spec b/files/pagure.spec index d295871..496193d 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.7.7 +Version: 5.7.8 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Wed Aug 28 2019 Pierre-Yves Chibon - 5.7.8-1 +- Update to 5.7.8 + * Wed Aug 21 2019 Pierre-Yves Chibon - 5.7.7-1 - Update to 5.7.7 diff --git a/pagure/__init__.py b/pagure/__init__.py index 637d7fd..dd569e1 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.7.7" +__version__ = "5.7.8" __api_version__ = "0.29"