From a2b490d24235ed75f32fb711601c0f882ffaa0e2 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 24 2016 13:44:39 +0000 Subject: Release 1.1.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6a26c98..5cf90e3 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On February 23, 2016 (release 1.1), the list looks as follow: +On February 24, 2016 (release 1.1.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3731 Pierre-Yves Chibon + 3736 Pierre-Yves Chibon 113 Ryan Lerch 59 Johan Cwiklinski 50 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index e262f59..0ff7120 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: 1.1 +Version: 1.1.1 Release: 1%{?dist} Summary: A git-centered forge @@ -253,6 +253,12 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Wed Feb 24 2016 Pierre-Yves Chibon - 1.1.1-1 +- Update to 1.1.1 +- Fix showing some files where decoding to UTF-8 was failing +- Avoid adding a notification to a PR for nothing +- Show notifications correctly on the PR page when received via SSE + * Tue Feb 23 2016 Pierre-Yves Chibon - 1.1-1 - Update to 1.1 - Sort the release by commit time rather than name (Clerment Verna) diff --git a/pagure/__init__.py b/pagure/__init__.py index 12d088b..f78baf5 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '1.1' +__version__ = '1.1.1' __api_version__ = '0.6'