From 31a2fd67cda3671498aee61b0aec3d34e81a90e6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jan 29 2021 14:44:01 +0000 Subject: Release 5.13.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 46c1aef..82b5ab3 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,12 @@ Changelog This document records all notable changes to `Pagure `_. +5.13.1 (2021-01-29) +------------------- +- Add the api_project_hascommit endpoint to the API doc +- Do not return a 500 error when the OpenID provider doesn't provide an email +- Fix bug in the default hook + 5.13.0 (2021-01-19) ------------------- - When failing to find a git repo, log where pagure looked diff --git a/doc/contributors.rst b/doc/contributors.rst index 2390016..cb79d39 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On January 19, 2021 (release 5.13) the list looks as follow: +On January 29, 2021 (release 5.13.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6888 Pierre-Yves Chibon + 6893 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 147 Julen Landa Alustiza diff --git a/files/pagure.spec b/files/pagure.spec index 1476ee5..459263c 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.13 +Version: 5.13.1 Release: 1%{?dist} Summary: A git-centered forge @@ -568,6 +568,9 @@ done %changelog +* Fri Jan 29 2021 Pierre-Yves Chibon - 5.13.1-1 +- Update to 5.13.1 + * Tue Jan 19 2021 Pierre-Yves Chibon - 5.13-1 - Update to 5.13 diff --git a/pagure/__init__.py b/pagure/__init__.py index 8291c66..7f881dc 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,4 +12,4 @@ from __future__ import unicode_literals, absolute_import __api_version__ = "0.31" -__version__ = "5.13" +__version__ = "5.13.1"