diff --git a/doc/contributors.rst b/doc/contributors.rst index 5171805..a1c63e7 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On November 30, 2015 (release 0.1.34), the list looks as follow: +On November 30, 2015 (release 0.1.35), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3255 Pierre-Yves Chibon + 3257 Pierre-Yves Chibon 59 Johan Cwiklinski 14 Ralph Bean 14 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index 1b9b3cc..9dda7fc 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.34 +Version: 0.1.35 Release: 1%{?dist} Summary: A git-centered forge @@ -245,6 +245,11 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Nov 30 2015 Pierre-Yves Chibon - 0.1.35-1 +- Update to 0.1.35 +- Fix the web-hook server by preventing it to raise any exception (rather log + the errors) + * Mon Nov 30 2015 Pierre-Yves Chibon - 0.1.34-1 - Update to 0.1.34 - Fix the encoding of the files we're displaying on the UI diff --git a/pagure/__init__.py b/pagure/__init__.py index 6c15b80..a9b4385 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.34' +__version__ = '0.1.35' __api_version__ = '0.6'