From 9091abdf6e5b31ba6f9a005154cb372e853c706a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 04 2020 05:56:04 +0000 Subject: Release 5.11.2 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 15cf204..81a3e4e 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,7 @@ Upgrading Pagure ================ + From 5.10 to 5.11 ----------------- @@ -10,6 +11,10 @@ The 5.11 release contains a database schema updates, so: (As usual, do your backups before). +New configuration key added (in 5.11.2): + +* LOGGING_GIT_HOOKS + From 5.9 to 5.10 ---------------- diff --git a/doc/changelog.rst b/doc/changelog.rst index 1ba6a20..cf12164 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,12 @@ Changelog This document records all notable changes to `Pagure `_. +5.11.2 (2020-08-04) +------------------- + +- Allow having a dedicated loggin configuration for the git hooks + + 5.11.1 (2020-08-03) ------------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index e243934..aba00a8 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -8,7 +8,7 @@ On May 14, 2019 (release 5.10.0) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6794 Pierre-Yves Chibon + 6796 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 143 Julen Landa Alustiza diff --git a/files/pagure.spec b/files/pagure.spec index 2f40f25..c32a58f 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.11.1 +Version: 5.11.2 Release: 1%{?dist} Summary: A git-centered forge @@ -567,6 +567,9 @@ done %changelog +* Tue Aug 04 2020 Pierre-Yves Chibon - 5.11.2-1 +- Update to 5.11.2 + * Mon Aug 03 2020 Pierre-Yves Chibon - 5.11.1-1 - Update to 5.11.1 diff --git a/pagure/__init__.py b/pagure/__init__.py index 3793b5e..85f0f54 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,4 +12,4 @@ from __future__ import unicode_literals, absolute_import __api_version__ = "0.30" -__version__ = "5.11.1" +__version__ = "5.11.2"