From ad413171cb4a8de2234c70ea7163439ee52e61a6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 11 2018 15:06:35 +0000 Subject: Release 5.1.3 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index cdabdaa..2cd547c 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,14 @@ Changelog This document records all notable changes to `Pagure `_. +5.1.3 (2018-10-11) +------------------ + +- Don't sync up ssh keys if there are already some +- Do not notify twice when pushing commits to an open PR +- Update git-multimail to the 1.4.0 version (fixes getting it working with py3) + + 5.1.2 (2018-10-11) ------------------ diff --git a/doc/contributors.rst b/doc/contributors.rst index db36904..77cc12f 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,19 +3,19 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 11, 2018 (release 5.1.2) the list looks as follow: +On October 11, 2018 (release 5.1.3) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6245 Pierre-Yves Chibon + 6254 Pierre-Yves Chibon 322 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh 133 Patrick Uiterwijk 127 Clement Verna 88 Farhaan Bukhsh - 75 Patrick Uiterwijk + 76 Patrick Uiterwijk 59 Johan Cwiklinski 48 Slavek Kabrda 47 Mark Reynolds diff --git a/files/pagure.spec b/files/pagure.spec index 543f939..95757e9 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.1.2 +Version: 5.1.3 Release: 1%{?dist} Summary: A git-centered forge @@ -472,6 +472,9 @@ sed -e "s/pythonX.Y/python%{python3_version}/g" -i $RPM_BUILD_ROOT/%{_sysconfdir %changelog +* Thu Oct 11 2018 Pierre-Yves Chibon - 5.1.3-1 +- Update to pagure 5.1.3 + * Thu Oct 11 2018 Pierre-Yves Chibon - 5.1.2-1 - Update to pagure 5.1.2 diff --git a/pagure/__init__.py b/pagure/__init__.py index 36a0b52..0ffe305 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals -__version__ = "5.1.2" +__version__ = "5.1.3" __api_version__ = "0.24"