From 64f4cb608ad62c215956d911a367b3a845df4002 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 18 2017 08:29:54 +0000 Subject: Upgrade to 2.15.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 8ed9c6e..2a73c64 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,26 +3,26 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 16, 2017 (release 2.15), the list looks as follow: +On May 18, 2017 (release 2.15.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5233 Pierre-Yves Chibon + 5242 Pierre-Yves Chibon 191 Ryan Lerch 139 farhaanbukhsh 138 Vivek Anand 77 Farhaan Bukhsh 60 Clement Verna 59 Johan Cwiklinski + 51 Patrick Uiterwijk 47 Mark Reynolds - 47 Patrick Uiterwijk 32 Pradeep CE (cep) 30 Lubomír Sedlář 22 rahul Bajaj 20 Jeremy Cline 19 Gaurav Kumar - 18 Matt Prahl + 19 Matt Prahl 18 Sayan Chowdhury 17 Abhijeet Kasurde 15 Ralph Bean @@ -61,6 +61,7 @@ Number of commits Contributor 2 Rahul Bajaj 2 Richard Marko 2 Ricky Elrod + 2 Shengjing Zhu 2 Simo Sorce 2 William Moreno Reyes 2 bruno @@ -81,7 +82,6 @@ Number of commits Contributor 1 Mathew Robinson 1 Pierre-YvesChibon 1 Robert Bost - 1 Shengjing Zhu 1 Snehal Karale 1 Stanislav Laznicka 1 Stanislav Ochotnicky diff --git a/files/pagure.spec b/files/pagure.spec index abde011..e0c9aeb 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.15 +Version: 2.15.1 Release: 1%{?dist} Summary: A git-centered forge @@ -370,6 +370,21 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Thu May 18 2017 Pierre-Yves Chibon - 2.15.1-1 +- Update to 2.15.1 +- Fix the requirements on straight.plugin in the requirements.txt file + (Shengjing Zhu) +- Fix typo in the fedmsg hook so it finds the function where it actually is +- Fix and increase the logging when merging a PR +- Fix pushing a merge commit to the original repo +- Use psutil's Process() instead of looping through all processes (Patrick + Uiterwijk) +- Don't email admins for each PR conflicting +- Fix/improve our new locking mechanism (Patrick Uiterwijk) +- Drop making the token required at the database level since pagure-ci doesn't + use one (but do flag pull-requests) +- Fix the watch feature (Matt Prahl) + * Tue May 16 2017 Pierre-Yves Chibon - 2.15-1 - Update to 2.15 - Improve logic in api/issue.py to reduce code duplication (Martin Basti) diff --git a/pagure/__init__.py b/pagure/__init__.py index 21fdcab..2c7fc2d 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources # noqa: E402,F401 -__version__ = '2.15' +__version__ = '2.15.1' __api_version__ = '0.13'