From 13d718ca87ddcc1e054531a7ae80e858a0a47734 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 11 2016 15:52:36 +0000 Subject: Release 2.3.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index e00b3b8..df0a58d 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On July 11, 2016 (release 2.3), the list looks as follow: +On July 11, 2016 (release 2.3.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4092 Pierre-Yves Chibon + 4100 Pierre-Yves Chibon 174 Ryan Lerch 61 farhaanbukhsh 59 Johan Cwiklinski diff --git a/files/pagure.spec b/files/pagure.spec index 7d20386..48eb475 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: 2.3 +Version: 2.3.1 Release: 1%{?dist} Summary: A git-centered forge @@ -259,6 +259,11 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Jul 11 2016 Pierre-Yves Chibon - 2.3.1-1 +- Update to 2.3.1 +- Fix sending notifications to users watching a project +- Fix displaying if you are watching the project or not + * Mon Jul 11 2016 Pierre-Yves Chibon - 2.3-1 - Update to 2.3 - Fix typos in pr_custom_page.rst (Lubomír Sedlář) diff --git a/pagure/__init__.py b/pagure/__init__.py index fe2c2f1..b58bcd0 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.3' +__version__ = '2.3.1' __api_version__ = '0.7'