From 35428262a68befec2085608353e63faf6fb6ca4e Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 30 2020 07:47:06 +0000 Subject: Release 5.9.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 08c107e..f401243 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,15 @@ Changelog This document records all notable changes to `Pagure `_. + +5.9.1 (2020-03-30) +------------------ +- Add a missing that broke the user's settings page +- Do not block when waiting for subprocess to finish (Michal Srb) +- Fix git blame when the identifier provided is a blob +- Fix view_commits when the identified provided is a blob +- When viewing file's history, use the default branch if needed + 5.9 (2020-03-24) ---------------- - Swap "Add" and "Cancel" button ordering for access management (Ken Dreyer) diff --git a/doc/contributors.rst b/doc/contributors.rst index e06c99c..0dcb292 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On March 24, 2019 (release 5.9.0) the list looks as follow: +On March 30, 2019 (release 5.9.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6685 Pierre-Yves Chibon + 6690 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 141 Julen Landa Alustiza @@ -140,6 +140,7 @@ Number of commits Contributor 1 Kunaal Jain 1 Mary Kate Fain 1 Mathew Robinson + 1 Michal Srb 1 Mohan Boddu 1 Pavel Raiskup 1 Peter KolĂ­nek @@ -180,6 +181,7 @@ Number of commits Contributor 1 smurfix 1 vibhcool 1 vivekanand1101 + 1 waifu ================= =========== This list is generated using diff --git a/files/pagure.spec b/files/pagure.spec index 4dc4504..638db3e 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.9.0 +Version: 5.9.1 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Mon Mar 30 2020 Pierre-Yves Chibon - 5.9.1-1 +- Update to 5.9.1 + * Tue Mar 24 2020 Pierre-Yves Chibon - 5.9.0-1 - Update to 5.9.0 diff --git a/pagure/__init__.py b/pagure/__init__.py index 3e7fe39..d919481 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.9.0" +__version__ = "5.9.1"