From 3c0e83b49e547397bee1de045719983edfd98090 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 13 2016 12:55:45 +0000 Subject: Release 2.1.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 0ebe5bf..83592d6 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,16 +3,16 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 12, 2016 (release 2.1), the list looks as follow: +On May 13, 2016 (release 2.1.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3979 Pierre-Yves Chibon + 3982 Pierre-Yves Chibon 154 Ryan Lerch 61 farhaanbukhsh 59 Johan Cwiklinski - 40 Clement Verna + 42 Clement Verna 18 Sayan Chowdhury 15 Ralph Bean 14 Patrick Uiterwijk diff --git a/files/pagure.spec b/files/pagure.spec index de7d4aa..e32428d 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.1 +Version: 2.1.1 Release: 1%{?dist} Summary: A git-centered forge @@ -253,6 +253,13 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Fri May 13 2016 Pierre-Yves Chibon - 2.1.1-1 +- Update to 2.1.1 +- Do not render the comment as markdown when importing tickets via the ticket + git repo +- Revert get_revs_between changes made in + https://pagure.io/pagure/pull-request/941 (Clement Verna) + * Fri May 13 2016 Pierre-Yves Chibon - 2.1-1 - Update to 2.1 - Fix the milter to get it working (hotfixed in prod) diff --git a/pagure/__init__.py b/pagure/__init__.py index 51eb04c..0d3b67f 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.1' +__version__ = '2.1.1' __api_version__ = '0.6'