From 2147215f6d92fe05979566d2b385d5bfde7b318a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 01 2016 12:58:43 +0000 Subject: Release 2.2.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 20eb20f..e9ea761 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,13 +3,13 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 31, 2016 (release 2.2), the list looks as follow: +On June 1, 2016 (release 2.2.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4001 Pierre-Yves Chibon - 166 Ryan Lerch + 4003 Pierre-Yves Chibon + 170 Ryan Lerch 61 farhaanbukhsh 59 Johan Cwiklinski 48 Clement Verna diff --git a/files/pagure.spec b/files/pagure.spec index 648b0b8..772dd7e 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.2 +Version: 2.2.1 Release: 1%{?dist} Summary: A git-centered forge @@ -254,6 +254,15 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Wed Jun 01 2016 Pierre-Yves Chibon - 2.2.1-1 +- Update to 2.2.1 +- Fix showing the inital comment on PR having only one commit (Ryan Lerch) +- Fix diffs not showing for additions/deletions for files under 1000 lines (Ryan + Lerch) +- Split out the commits page to a template of its own (Ryan Lerch) +- Fix hightlighting the commits tab on commit view +- Fix the fact that the no readme box show on empty repo (Ryan Lerch) + * Tue May 31 2016 Pierre-Yves Chibon - 2.2-1 - Update to 2.2 - Fix retrieving the log level from the configuration file (Nuno Maltez) diff --git a/pagure/__init__.py b/pagure/__init__.py index de03f7a..c7c73db 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.2' +__version__ = '2.2.1' __api_version__ = '0.6'