From f5ab4fdae5a3cd7e75119c5fff5d22b4ed74c959 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 11 2018 08:31:50 +0000 Subject: Release 5.1.2 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index c376bad..cdabdaa 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,22 @@ Changelog This document records all notable changes to `Pagure `_. +5.1.2 (2018-10-11) +------------------ + +- Add some documentation about MIRROR_SSHKEYS_FOLDER +- Make the sshkey migration more flexible (if you have not yet upgraded to 5.1) +- Fix the update date information on the pull-request page +- Fix detecting if the user is a committer via a group +- Fix writing user's ssh keys on disk +- tweak colours of the activity graph (Ryan Lerch) +- Allow a specific list of users to create a project ignoring existing repo + (Patrick Uiterwijk) +- Implement pulling and pushing via repobridge instead of HTTPS + (Patrick Uiterwijk) +- cache oidc user data (Karsten Hopp) + + 5.1.1 (2018-10-09) ------------------ diff --git a/doc/contributors.rst b/doc/contributors.rst index ccab525..db36904 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,26 +3,26 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 9, 2018 (release 5.1) the list looks as follow: +On October 11, 2018 (release 5.1.2) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6235 Pierre-Yves Chibon - 321 Ryan Lerch + 6245 Pierre-Yves Chibon + 322 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh 133 Patrick Uiterwijk 127 Clement Verna 88 Farhaan Bukhsh - 71 Patrick Uiterwijk + 75 Patrick Uiterwijk 59 Johan Cwiklinski 48 Slavek Kabrda 47 Mark Reynolds 32 Matt Prahl 32 Pradeep CE (cep) 31 Lubomír Sedlář - 28 Karsten Hopp + 29 Karsten Hopp 25 Lubomír Sedlář 23 rahul Bajaj 20 Jeremy Cline diff --git a/files/pagure.spec b/files/pagure.spec index 6bb0140..543f939 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.1.1 +Version: 5.1.2 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.2-1 +- Update to pagure 5.1.2 + * Tue Oct 09 2018 Pierre-Yves Chibon - 5.1.1-1 - Update to pagure 5.1.1 diff --git a/pagure/__init__.py b/pagure/__init__.py index 6cc2b97..36a0b52 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals -__version__ = "5.1.1" +__version__ = "5.1.2" __api_version__ = "0.24"