From 83702f10f59939e56fa12ed38a49f9748fe4b32d Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 24 2017 09:36:26 +0000 Subject: Release 2.90.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6c6c563..f31e253 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 23, 2017 (release 2.90.0), the list looks as follow: +On May 24, 2017 (release 2.90.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5247 Pierre-Yves Chibon + 5248 Pierre-Yves Chibon 191 Ryan Lerch 139 farhaanbukhsh 138 Vivek Anand - 108 Patrick Uiterwijk + 113 Patrick Uiterwijk 77 Farhaan Bukhsh 60 Clement Verna 59 Johan Cwiklinski diff --git a/files/pagure.spec b/files/pagure.spec index 144c8fb..d22a7fd 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.90.0 +Version: 2.90.1 Release: 1%{?dist} Summary: A git-centered forge @@ -230,6 +230,7 @@ install -m 644 files/alembic.ini $RPM_BUILD_ROOT/%{_sysconfdir}/pagure/alembic.i cp -r alembic $RPM_BUILD_ROOT/%{_datadir}/pagure # Install the systemd file for the worker +mkdir -p $RPM_BUILD_ROOT/%{_unitdir} install -m 644 files/pagure_worker.service \ $RPM_BUILD_ROOT/%{_unitdir}/pagure_worker.service @@ -384,6 +385,14 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Wed May 24 2017 Pierre-Yves Chibon - 2.90.1-1 +- Update to 2.90.1 +- Fix the systemd service file for the worker, needs to have the full path + (Patrick Uiterwijk and I) +- Fix the logcom server (Patrick Uiterwijk) +- Use python-redis instead of trollius-redis to correctly clean up when client + leaves on the EV server (Patrick Uiterwijk) + * Tue May 23 2017 Pierre-Yves Chibon - 2.90.0-1 - Bump to 2.90, pre-release of 3.0 - Re-architecture the interactions with git (especially the writing part) to be diff --git a/pagure/__init__.py b/pagure/__init__.py index b485671..bff18a7 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources # noqa: E402,F401 -__version__ = '2.90.0' +__version__ = '2.90.1' __api_version__ = '0.14'