From e1a8b5e4a2a347ab29de7cc21d9d2c89f55dd076 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 10 2021 13:33:29 +0000 Subject: Release 5.13.2 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index 82b5ab3..0b5e658 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,12 +3,21 @@ Changelog This document records all notable changes to `Pagure `_. +5.13.2 (2021-01-29) +------------------- +- Fix broken pagination of group API (Lukas Brabec and František Zatloukal) +- Fixing the alias url in the examples (Mohan Boddu) +- Pull in upstream fix for apostrophes from highlightjs-rpm-specfile (David Auer) +- Improve logging when trying to interract with a git repo via http(s) + + 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 cb79d39..33de076 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 29, 2021 (release 5.13.1) the list looks as follow: +On February 10, 2021 (release 5.13.2) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6893 Pierre-Yves Chibon + 6895 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 147 Julen Landa Alustiza @@ -96,10 +96,12 @@ Number of commits Contributor 2 Carlos Mogas da Silva 2 Daniel Mach 2 Fabian Arrotin + 2 František Zatloukal 2 Hervé Beraud 2 Kamil Páral 2 Luis Guzman 2 MR + 2 Mohan Boddu 2 Neha Kandpal 2 Nuno Maltez 2 Ompragash @@ -131,6 +133,7 @@ Number of commits Contributor 1 Brian (bex) Exelbierd 1 Carl George 1 Charelle Collett + 1 David Auer 1 David Caro 1 Devesh Kumar Singh 1 Eashan @@ -147,10 +150,10 @@ Number of commits Contributor 1 Ken Dreyer 1 Koichi MATSUMOTO 1 Kunaal Jain + 1 Lukas Brabec 1 Mary Kate Fain 1 Mathew Robinson 1 Michal Srb - 1 Mohan Boddu 1 Mohan Boddu 1 Nils Philippsen 1 Pavel Raiskup diff --git a/files/pagure.spec b/files/pagure.spec index 459263c..47906be 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.13.1 +Version: 5.13.2 Release: 1%{?dist} Summary: A git-centered forge @@ -568,6 +568,9 @@ done %changelog +* Wed Feb 10 2021 Pierre-Yves Chibon - 5.13.2-1 +- Update to 5.13.2 + * Fri Jan 29 2021 Pierre-Yves Chibon - 5.13.1-1 - Update to 5.13.1 diff --git a/pagure/__init__.py b/pagure/__init__.py index 7f881dc..94e4a1e 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.1" +__version__ = "5.13.2"