From 75daa0c2eac63db1ab59a5dfcfe90723175f8b61 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 05 2015 16:08:57 +0000 Subject: Release 0.1.13 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 568cfed..63c54d1 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On June 05, 2015 (release 0.1.12), the list looks as follow: +On June 05, 2015 (release 0.1.13), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2536 Pierre-Yves Chibon + 2545 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index 94d53ec..c3c0a1d 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.12 +Version: 0.1.13 Release: 1%{?dist} Summary: A git-centered forge @@ -175,6 +175,15 @@ install -m 644 milters/comment_email_milter.py \ %changelog +* Fri Jun 05 2015 Pierre-Yves Chibon - 0.1.13-1 +- Update to 0.1.13 +- Do not show the edit button if the user cannot edit the file +- Fix who is allowed to drop comments +- Fix showing the drop comment button on issue comments +- Fix creating the pull-request for fast people like @lmacken +- Display the target of the PR as well as the origin in the PR page +- Limit the size of the lists on the front page + * Fri Jun 05 2015 Pierre-Yves Chibon - 0.1.12-1 - Update to 0.1.12 - Fix the URL where the sources upload are done diff --git a/pagure/__init__.py b/pagure/__init__.py index 3b21682..c513503 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.12' +__version__ = '0.1.13' __api_version__ = '0.3'