From 556d83a4396b4f0e887733856a32bfc5fefd294c Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 13 2015 15:34:41 +0000 Subject: Release 0.1.30 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 11b50be..8969b83 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 13, 2015 (release 0.1.29), the list looks as follow: +On October 13, 2015 (release 0.1.30), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3178 Pierre-Yves Chibon + 3181 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon diff --git a/files/pagure.spec b/files/pagure.spec index cbdab8f..ac24974 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.29 +Version: 0.1.30 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,12 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Tue Oct 13 2015 Pierre-Yves Chibon - 0.1.30-1 +- Fix error received by email by checking the right variable if it is a git tree + or a git blob +- Unless we explicitly accept all images tag, always filter them (fixes + attaching images to a ticket) + * Tue Oct 13 2015 Pierre-Yves Chibon - 0.1.29-1 - Use monospace fonts for online editing as well as comment on tickets and pull-requests diff --git a/pagure/__init__.py b/pagure/__init__.py index a36429f..00d9630 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.29' +__version__ = '0.1.30' __api_version__ = '0.6'