From 178f659033cdad8126a18951612f1a8e8b0930f1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 12 2016 09:44:07 +0000 Subject: Release 2.3.2 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index df0a58d..f1b1c7e 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.1), the list looks as follow: +On July 12, 2016 (release 2.3.2), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4100 Pierre-Yves Chibon + 4102 Pierre-Yves Chibon 174 Ryan Lerch 61 farhaanbukhsh 59 Johan Cwiklinski diff --git a/files/pagure.spec b/files/pagure.spec index 48eb475..fbfc8a4 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.1 +Version: 2.3.2 Release: 1%{?dist} Summary: A git-centered forge @@ -259,6 +259,11 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Tue Jul 12 2016 Pierre-Yves Chibon - 2.3.2-1 +- Update to 2.3.2 +- Do not mark as local only some of the internal API endpoints since they are + called via ajax and thus with the user's IP + * Mon Jul 11 2016 Pierre-Yves Chibon - 2.3.1-1 - Update to 2.3.1 - Fix sending notifications to users watching a project diff --git a/pagure/__init__.py b/pagure/__init__.py index b58bcd0..e32b05b 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.1' +__version__ = '2.3.2' __api_version__ = '0.7'