From d31d85f1f399406be4599505a935aad0be5fea91 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 13 2016 08:43:11 +0000 Subject: Release 2.7.2 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6d98636..49640a4 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Oct 12, 2016 (release 2.7.1), the list looks as follow: +On Oct 13, 2016 (release 2.7.2), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4492 Pierre-Yves Chibon + 4494 Pierre-Yves Chibon 186 Ryan Lerch 89 farhaanbukhsh 59 Johan Cwiklinski @@ -23,7 +23,7 @@ Number of commits Contributor 13 Ghost-script 13 Mathieu Bridon 8 Lei Yang - 6 Jeremy Cline + 7 Jeremy Cline 5 Mike McLean 5 Oliver Gutierrez 5 Paul W. Frields diff --git a/files/pagure.spec b/files/pagure.spec index fba559e..900ddd2 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -2,7 +2,7 @@ %distutils.sysconfig import get_python_lib; print (get_python_lib())")} Name: pagure -Version: 2.7.1 +Version: 2.7.2 Release: 1%{?dist} Summary: A git-centered forge @@ -298,6 +298,11 @@ install -m 644 pagure-ci/pagure_ci.service \ %changelog +* Thu Oct 13 2016 Pierre-Yves Chibon - 2.7.2-1 +- Update to 2.7.2 +- Do not show the custom field if the project has none +- Improve the documentation around SEND_EMAIL (Jeremy Cline) + * Wed Oct 12 2016 Pierre-Yves Chibon - 2.7.1-1 - Update to 2.7.1 - Bug fix to the custom fields feature diff --git a/pagure/__init__.py b/pagure/__init__.py index 83c1263..b479414 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.7.1' +__version__ = '2.7.2' __api_version__ = '0.8'