From b55d7430fe78c41092c2cda0d6d8b80a2dc0f141 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 02 2019 11:51:24 +0000 Subject: Release 5.8.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 6ce0e56..79793cc 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,14 @@ Changelog This document records all notable changes to `Pagure `_. +5.8.1 (2019-12-02) +------------------ +- Fix the link to the container namespace in srcfpo +- Fix checking if the user is a committer of the repo the PR originates from +- Fix showing the origin of the PR when it originates from the same project +- Do not hard-code UTF-8 when showing a file +- Fix the Vagrant setup + 5.8 (2019-11-15) ---------------- - Enable the ctrl-enter keys to submit forms on tickets and PRs (Julen diff --git a/doc/contributors.rst b/doc/contributors.rst index e1aa562..404cc21 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,18 +3,18 @@ Contributors to pagure Pagure would be nothing without its contributors. -On November 15, 2019 (release 5.8) the list looks as follow: +On December 2, 2019 (release 5.8.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6638 Pierre-Yves Chibon + 6640 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh - 133 Clement Verna + 134 Clement Verna 133 Patrick Uiterwijk - 99 Julen Landa Alustiza + 110 Julen Landa Alustiza 98 Patrick Uiterwijk 88 Farhaan Bukhsh 64 Slavek Kabrda @@ -135,6 +135,7 @@ Number of commits Contributor 1 Kunaal Jain 1 Mary Kate Fain 1 Mathew Robinson + 1 Michal Konečný 1 Miro Hrončok 1 Mohan Boddu 1 Pavel Raiskup diff --git a/files/pagure.spec b/files/pagure.spec index 14d21fe..1ac8d42 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.8 +Version: 5.8.1 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Mon Dec 02 2019 Pierre-Yves Chibon - 5.8.1-1 +- Update to 5.8.1 + * Fri Nov 15 2019 Pierre-Yves Chibon - 5.8-1 - Update to 5.8 diff --git a/pagure/__init__.py b/pagure/__init__.py index 0e0f534..4276590 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,4 +12,4 @@ from __future__ import unicode_literals, absolute_import __api_version__ = "0.29" -__version__ = "5.8" +__version__ = "5.8.1"