From e1d3f8bc69eb45e3bcd74fa5e55171fbed059f4d Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 13 2017 17:44:39 +0000 Subject: Release 2.12.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 60ab628..76ca28e 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -1,25 +1,25 @@ Contributors to pagure -========================= +====================== Pagure would be nothing without its contributors. -On Feb 10, 2016 (release 2.12), the list looks as follow: +On Feb 13, 2016 (release 2.12.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4910 Pierre-Yves Chibon + 4920 Pierre-Yves Chibon 191 Ryan Lerch 89 farhaanbukhsh 72 Vivek Anand 60 Clement Verna 59 Johan Cwiklinski 42 Mark Reynolds - 33 Patrick Uiterwijk - 32 Farhaan Bukhsh + 36 Patrick Uiterwijk + 33 Farhaan Bukhsh 30 Lubomír Sedlář - 22 Pradeep CE (cep) - 21 rahul Bajaj + 27 Pradeep CE (cep) + 22 rahul Bajaj 20 Jeremy Cline 19 Gaurav Kumar 18 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index f4e0a83..c8c3ee1 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.12 +Version: 2.12.1 Release: 1%{?dist} Summary: A git-centered forge @@ -335,6 +335,18 @@ install -m 644 pagure-logcom/pagure_logcom.service \ %changelog +* Mon Feb 13 2017 Pierre-Yves Chibon - 2.12.1-1 +- Update to 2.12.1 +- Include the build id in the flag set by pagure-ci on PR (Farhaan Bukhsh) +- Fix using the deploy keys (Patrick Uiterwijk) +- Add the possibility to ignore existing git repo on disk when creating a new + project +- Fix checking for blacklisted projects if they have no namespace +- Link to the documentation in the footer (Rahul Bajaj) +- Fix retrieving the list of branches available for pull-request +- Order the project of a group alphabetically (case-insensitive) +- Fix listing the priorities always in their right order + * Fri Feb 10 2017 Pierre-Yves Chibon - 2.12-1 - Update to 2.12 - Fix the place of the search and tags bars in the issues page (Pradeep CE) diff --git a/pagure/__init__.py b/pagure/__init__.py index 4be9faa..2123379 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.12' +__version__ = '2.12.1' __api_version__ = '0.11'