From 4d9d204d41c4c8e58822ebacfa92a49108609184 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 09 2018 13:43:50 +0000 Subject: Release 5.1.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index eb67dcf..c376bad 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,12 @@ Changelog This document records all notable changes to `Pagure `_. +5.1.1 (2018-10-09) +------------------ + +- Fix adding and removing ssh keys in the user's profile + + 5.1 (2018-10-09) ---------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 898774a..ccab525 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -8,7 +8,7 @@ On October 9, 2018 (release 5.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6229 Pierre-Yves Chibon + 6235 Pierre-Yves Chibon 321 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index 3b73a31..6bb0140 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.1 +Version: 5.1.1 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 +* Tue Oct 09 2018 Pierre-Yves Chibon - 5.1.1-1 +- Update to pagure 5.1.1 + * Tue Oct 09 2018 Pierre-Yves Chibon - 5.1-1 - Update to pagure 5.1 diff --git a/pagure/__init__.py b/pagure/__init__.py index e028372..6cc2b97 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals -__version__ = "5.1" +__version__ = "5.1.1" __api_version__ = "0.24"