From 2162f9d9b8bc4fb563cef9349ae0e8f67824dc28 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 08 2015 21:19:47 +0000 Subject: Release 0.1.24 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 06f05ee..2b8c89a 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On August 30, 2015 (release 0.1.23), the list looks as follow: +On September 8, 2015 (release 0.1.24), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3057 Pierre-Yves Chibon + 3079 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon diff --git a/files/pagure.spec b/files/pagure.spec index b92ded5..30b2589 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.23 +Version: 0.1.24 Release: 1%{?dist} Summary: A git-centered forge @@ -212,7 +212,16 @@ install -m 644 ev-server/pagure_ev.service \ %changelog -* Sun Aug 30 2015 Pierre-Yves Chibon - 0.1.23 +* Tue Sep 08 2015 Pierre-Yves Chibon - 0.1.24-1 +- Update to 0.1.24 +- Fix changelog to add the -release +- Block the tag on titles +- Better fedmsg notifications (for example for new branches or rebase) +- Support uploading multiple files at once +- Add a load_from_disk utility script to the sources +- Fix indentation to the right on very long pull-request + +* Sun Aug 30 2015 Pierre-Yves Chibon - 0.1.23-1 - 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 @@ -238,13 +247,13 @@ install -m 644 ev-server/pagure_ev.service \ - 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 +* Fri Aug 07 2015 Pierre-Yves Chibon - 0.1.22-1 - Update to 0.1.22 - Adjust the README to the current state of pagure - Rework how we integrate our custom tags into markdown to avoid the infinite loop we run into once in a while -* Wed Aug 05 2015 Pierre-Yves Chibon - 0.1.21 +* Wed Aug 05 2015 Pierre-Yves Chibon - 0.1.21-1 - Update to 0.1.21 - Make SSH protocol explicit for SSH URLs (Till Maas) - Adjust the documentation (layout and content) @@ -255,7 +264,7 @@ install -m 644 ev-server/pagure_ev.service \ - Fix who can open a remote PR and the check that the repo allows PR - If there is no commit and no content, it means we didn't find the file: 404 -* Wed Jul 29 2015 Pierre-Yves Chibon - 0.1.20 +* Wed Jul 29 2015 Pierre-Yves Chibon - 0.1.20-1 - Update to 0.1.20 - Include the tags in the JSON representation of a project - Add the ability to open a pull-request from a git repo not hosted on pagure diff --git a/pagure/__init__.py b/pagure/__init__.py index e47b6e8..7aec556 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.23' +__version__ = '0.1.24' __api_version__ = '0.5'