From 42ea2a108aac8c1faaa8625ce7d5dd69f02714cd Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Apr 26 2018 12:59:52 +0000 Subject: Release 4.0.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/changelog.rst b/doc/changelog.rst index f03b3eb..1fe4014 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -3,6 +3,15 @@ Changelog This document records all notable changes to `Pagure `_. +4.0.1 (2018-04-26) +------------------ + +- Fix browsing projects in a namespace when logged in and the instance has only + one contributor for every projects +- Fix commenting on a PR or an issue if the event source server is not + configured at all (Slavek Kabrda) + + 4.0 (2018-04-26) ---------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 36f7a3f..abfb010 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On December 21, 2017 (release 3.13.2) the list looks as follow: +On April 26, 2018 (release 4.0.1) the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5828 Pierre-Yves Chibon + 5831 Pierre-Yves Chibon 193 Ryan Lerch 172 Vivek Anand 139 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index 3ea507d..fece355 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -1,5 +1,5 @@ Name: pagure -Version: 4.0 +Version: 4.0.1 Release: 1%{?dist} Summary: A git-centered forge @@ -453,6 +453,9 @@ install -p -m 644 pagure-ev/pagure_ev.service \ %changelog +* Thu Apr 26 2018 Pierre-Yves Chibon - 4.0.1-1 +- Update to 4.0.1 + * Thu Apr 26 2018 Pierre-Yves Chibon - 4.0-1 - Update to 4.0 - Changelog is from now on included in the doc/ folder diff --git a/pagure/__init__.py b/pagure/__init__.py index f7236ff..61af657 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -9,5 +9,5 @@ """ -__version__ = '4.0' +__version__ = '4.0.1' __api_version__ = '0.23'