From 584cd5279f75c5c06ce3c93838f79e46ce29c0fb Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 24 2017 09:20:09 +0000 Subject: Release 2.13.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 97a5355..2576df8 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Feb 21, 2016 (release 2.13), the list looks as follow: +On Feb 24, 2016 (release 2.13.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4979 Pierre-Yves Chibon + 4989 Pierre-Yves Chibon 191 Ryan Lerch 116 Vivek Anand 89 farhaanbukhsh @@ -16,9 +16,9 @@ Number of commits Contributor 59 Johan Cwiklinski 45 Mark Reynolds 39 Patrick Uiterwijk - 33 Farhaan Bukhsh + 34 Farhaan Bukhsh + 32 Pradeep CE (cep) 30 Lubomír Sedlář - 27 Pradeep CE (cep) 22 rahul Bajaj 20 Jeremy Cline 19 Gaurav Kumar @@ -61,6 +61,7 @@ Number of commits Contributor 2 William Moreno Reyes 2 bruno 2 dhrish20 + 2 shivani 2 “AnjaliPardeshi” <“anjalipardeshi92@gmail.com”> 1 Aleksandra Fedorova (bookwar) 1 Amol Kahat @@ -86,7 +87,6 @@ Number of commits Contributor 1 pingou 1 rishika7000 1 ryanlerch - 1 shivani 1 skrzepto 1 vibhcool ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index eb367e1..8ff7271 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.13 +Version: 2.13.1 Release: 1%{?dist} Summary: A git-centered forge @@ -371,6 +371,18 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Fri Feb 24 2017 Pierre-Yves Chibon - 2.13.1-1 +- Update to 2.13.1 +- Add a cancel button on the edit file page (shivani) +- Fix rendering empty file (Farhan Bukhsh) +- Fix retrieving the merge status of a pull-request when there is no master +- On the diff of a pull-request, add link to see that line in the entire file + (Pradeep CE) +- Make the pagure_hook_tickets git hook file be executable +- Be a little more selective about the markdown extensions always activated +- Do not notify the SSE server on comment added to a ticket via git +- Fix inline comment not showing on first click in PR page (Pradeep CE) + * Tue Feb 21 2017 Pierre-Yves Chibon - 2.13-1 - Update to 2.13 - Allow filtering issues for certain custom keys using : in the diff --git a/pagure/__init__.py b/pagure/__init__.py index 1ed7473..60290c3 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.13' +__version__ = '2.13.1' __api_version__ = '0.11'