From d737a427404ee61b232298fa497756bd26eca13c Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 25 2019 15:30:52 +0000 Subject: Release 5.3.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index d15ec4b..c2ea2ac 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,12 @@ Changelog This document records all notable changes to `Pagure `_. +5.3.1 (2019-02-25) +------------------ + +- Fix adding multiple tags to an issue + + 5.3 (2019-02-22) ---------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index df2bcc3..b78f340 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On February 22, 2019 (release 5.3) the list looks as follow: +On February 25, 2019 (release 5.3.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 6485 Pierre-Yves Chibon + 6487 Pierre-Yves Chibon 328 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index 106820d..ffd9335 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -16,7 +16,7 @@ Name: pagure -Version: 5.3 +Version: 5.3.1 Release: 1%{?dist} Summary: A git-centered forge @@ -491,6 +491,9 @@ done %changelog +* Mon Feb 25 2019 Pierre-Yves Chibon - 5.3.1-1 +- Update to 5.3.1 + * Fri Feb 22 2019 Pierre-Yves Chibon - 5.3-1 - Update to pagure 5.3 diff --git a/pagure/__init__.py b/pagure/__init__.py index 36e7d2e..6230724 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -11,5 +11,5 @@ from __future__ import unicode_literals, absolute_import -__version__ = "5.3" +__version__ = "5.3.1" __api_version__ = "0.26"