From 9a378d4665a3da027c8b689d7a4cada63f2fc8a0 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 05 2015 07:44:33 +0000 Subject: Release 0.1.25 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 2b8c89a..9493fd3 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,30 +3,30 @@ Contributors to pagure Pagure would be nothing without its contributors. -On September 8, 2015 (release 0.1.24), the list looks as follow: +On October 5, 2015 (release 0.1.25), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3079 Pierre-Yves Chibon + 3153 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon 13 Sayan Chowdhury 8 Lei Yang 8 Ralph Bean + 5 Patrick Uiterwijk 5 yangl1996 + 3 Dhriti Shikhar 3 Kushal Khandelwal - 3 Patrick Uiterwijk 2 Ricky Elrod 2 Simo Sorce 2 Till Maas + 2 dhrish20 1 David Caro - 1 Dhriti Shikhar 1 Jan Pokorný 1 Kunaal Jain 1 Stanislav Ochotnicky - 1 dhrish20 1 jcvicelli 1 pingou diff --git a/files/pagure.spec b/files/pagure.spec index 30b2589..a2b2714 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.24 +Version: 0.1.25 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,31 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Mon Oct 05 2015 Pierre-Yves Chibon - 0.1.25-1 +- Update to 0.1.25 +- Improve the documentation (especially the part about configuring pagure and + all the options the configuration file supports) +- Remove the two trailing empty lines when showing a file online +- Add a link on the issue list to be able to filter all the unassigned issues +- Rework the layout of the pull-request page +- Rework the commit list in the PR page to allow showing the entire commit + message +- Let any user create remote pull-request otherwise what's the point? +- Add the possibility to edit the title of a pull-request +- Add a page listing all the pull-requests of an user (opened by or against) +- Add support for multiple ssh-keys (Patrick Uiterwijk) +- Ensure the authorized_keys file is generated by gitolite (Patrick Uiterwijk) +- Fix the regex for @ +- Improve the display of renamed files in PR +- Add option to disable entirely the user/group management from the UI +- Add an updated_on field to Pull-Request +- Add an closed_at field to Pull-Request +- Allow the submitter of a PR to close it (w/o merging it) +- Disable editing a pull-request when that one is closed/merged +- Add option to hide by default a part of the index page (ie: all the repos, the + user's repos or the user's forks) +- Drop the csrf_token from the error emails sent to the admins + * Tue Sep 08 2015 Pierre-Yves Chibon - 0.1.24-1 - Update to 0.1.24 - Fix changelog to add the -release diff --git a/pagure/__init__.py b/pagure/__init__.py index 41fb351..375846c 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,8 +12,8 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '0.1.24' -__api_version__ = '0.5' +__version__ = '0.1.25' +__api_version__ = '0.6' import datetime