diff --git a/doc/contributors.rst b/doc/contributors.rst index 875f509..5582534 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,19 +3,19 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 5, 2015 (release 0.1.26), the list looks as follow: +On October 5, 2015 (release 0.1.27), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3157 Pierre-Yves Chibon + 3159 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon 13 Sayan Chowdhury 8 Lei Yang 8 Ralph Bean - 5 Patrick Uiterwijk + 6 Patrick Uiterwijk 5 yangl1996 3 Dhriti Shikhar 3 Kushal Khandelwal diff --git a/files/pagure.spec b/files/pagure.spec index ad282df..72902fd 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: 0.1.26 +Version: 0.1.27 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,11 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Mon Oct 05 2015 Pierre-Yves Chibon - 0.1.27-1 +- Update to 0.1.27 +- Skip writing empty ssh keys on disc +- Regenerate authorized_keys file on ssh key change (Patrick Uiterwijk) + * Mon Oct 05 2015 Pierre-Yves Chibon - 0.1.26-1 - Update to 0.1.26 - Let admins close PRs as well diff --git a/pagure/__init__.py b/pagure/__init__.py index 3d1e653..b67481c 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '0.1.26' +__version__ = '0.1.27' __api_version__ = '0.6'