From 53c796843ad29e9af8eece1888e1d1c4d9beadce Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 30 2015 13:39:46 +0000 Subject: Release 0.1.23 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6cdd1f4..06f05ee 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,25 +3,30 @@ Contributors to pagure Pagure would be nothing without its contributors. -On August 7, 2015 (release 0.1.22), the list looks as follow: +On August 30, 2015 (release 0.1.23), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2987 Pierre-Yves Chibon + 3057 Pierre-Yves Chibon 59 Johan Cwiklinski + 13 Ghost-script 13 Mathieu Bridon - 12 Sayan Chowdhury - 8 Ghost-script + 13 Sayan Chowdhury 8 Lei Yang 8 Ralph Bean 5 yangl1996 3 Kushal Khandelwal - 2 Patrick Uiterwijk + 3 Patrick Uiterwijk + 2 Ricky Elrod 2 Simo Sorce 2 Till Maas + 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 74c3395..b92ded5 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.22 +Version: 0.1.23 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,32 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Sun Aug 30 2015 Pierre-Yves Chibon - 0.1.23 +- Update to 0.1.23 +- Return a 404 error if we can't find the doc repo asked +- Fix for #106 Allow setting the default branch of the git repo and in the UI + (Ghost-script) +- Improve unit-tests suite +- Add a global boolean to disable entirely tickets on all projects of a pagure + instance (with no way to re-set them per project) +- Do display uploading a tarball if it is not entirely configured +- Ensure we do not offer to reply by email if the milter is not set up +- Ensure there is no new line character on the msg-id and improve logging in the + milter +- Add a configuration key to globally disable creating projects +- Add a configuration key to globally disable deleting projects +- Add the possibility to search projects/users +- Drop links to the individual commits in a remote pull-request +- Input that are cleaned via the noJS filter are safe to be displayed (avoid + double HTML escaping) +- When writing the authorized_key file, encode the data in UTF-8 +- Makes page title easier to find in multi-tab cases (dhrish20) +- Fix authorized_keys file creation (Patrick Uiterwijk) +- Honor also symlinked README's in repo overview (Jan Pakorný) +- Fix the patch generation for remote PR +- Fix showing the comment's preview on the pull-request page +- Fix bug in checking if a PR can be merged + * Fri Aug 07 2015 Pierre-Yves Chibon - 0.1.22 - Update to 0.1.22 - Adjust the README to the current state of pagure diff --git a/pagure/__init__.py b/pagure/__init__.py index 83775a1..e47b6e8 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.22' +__version__ = '0.1.23' __api_version__ = '0.5'