diff --git a/doc/contributors.rst b/doc/contributors.rst index a1c63e7..6f51789 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On November 30, 2015 (release 0.1.35), the list looks as follow: +On December 14, 2015 (release 0.1.36), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3257 Pierre-Yves Chibon + 3266 Pierre-Yves Chibon 59 Johan Cwiklinski 14 Ralph Bean 14 Sayan Chowdhury @@ -16,6 +16,7 @@ Number of commits Contributor 13 Mathieu Bridon 8 Lei Yang 6 Patrick Uiterwijk + 5 Gaurav Kumar 5 yangl1996 4 Maciej Lasyk 3 Dhriti Shikhar diff --git a/files/pagure.spec b/files/pagure.spec index 9dda7fc..5bebebc 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: 0.1.35 +Version: 0.1.36 Release: 1%{?dist} Summary: A git-centered forge @@ -245,6 +245,19 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Dec 14 2015 Pierre-Yves Chibon - 0.1.36-1 +- Update to 0.1.36 +- Add the ssh info on the front page if the repo is empty +- Make the code handling exception be python3 compatible +- Make pagure compatible with F23 (ie: pygit2 0.23.0) +- Fix pagination when rendering the repo blocks (Gaurav Kumar) +- Make the SHOW_PROJECTS_INDEX list what should be showing in the index page +- Adjust pagure to work on recent version of psutils as well as the old one +- Added 'projects' to the blacklisted list of projects (Gaurav Kumar) +- Removed delete icons for non group members on the group info page (Gaurav + Kumar) +- Fixed forbidden error for PR title editing (Gaurav Kumar) + * Mon Nov 30 2015 Pierre-Yves Chibon - 0.1.35-1 - Update to 0.1.35 - Fix the web-hook server by preventing it to raise any exception (rather log diff --git a/pagure/__init__.py b/pagure/__init__.py index a588dda..5ac1710 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '0.1.35' +__version__ = '0.1.36' __api_version__ = '0.6'