From 7e724473a60c41699e39f1126a6d1e0ff579cc74 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 13 2015 16:01:34 +0000 Subject: Release 0.1.31 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 8969b83..6098670 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.30), the list looks as follow: +On October 13, 2015 (release 0.1.31), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3181 Pierre-Yves Chibon + 3183 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon diff --git a/files/pagure.spec b/files/pagure.spec index ac24974..e3221de 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.30 +Version: 0.1.31 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,11 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Tue Oct 13 2015 Pierre-Yves Chibon - 0.1.31-1 +- Forward the bail_on_tree boolean when iterating so that we know how to behave + when we run into a git tree (where we expected a git blob) + -> fixes error received by email + * 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 diff --git a/pagure/__init__.py b/pagure/__init__.py index 0ed6ca1..5313b71 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.30' +__version__ = '0.1.31' __api_version__ = '0.6'