From 1ac4b40d98f559d9651510d0049db289e862e8ec Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 31 2017 17:16:43 +0000 Subject: Release 3.4 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 5a82d92..b528711 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,18 +3,18 @@ Contributors to pagure Pagure would be nothing without its contributors. -On July 24, 2017 (release 3.3.1), the list looks as follow: +On July 31, 2017 (release 3.4), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5337 Pierre-Yves Chibon + 5350 Pierre-Yves Chibon 191 Ryan Lerch - 143 Vivek Anand + 144 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk 77 Farhaan Bukhsh - 66 Clement Verna + 68 Clement Verna 59 Johan Cwiklinski 47 Mark Reynolds 32 Pradeep CE (cep) @@ -83,6 +83,7 @@ Number of commits Contributor 1 Igor Gnatenko 1 Kunaal Jain 1 Mathew Robinson + 1 Ompragash 1 Pierre-YvesChibon 1 Robert Bost 1 Snehal Karale diff --git a/files/pagure.spec b/files/pagure.spec index 49c5491..8b0849c 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: 3.3.1 +Version: 3.4 Release: 1%{?dist} Summary: A git-centered forge @@ -384,6 +384,23 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Mon Jul 31 2017 Pierre-Yves Chibon - 3.4-1 +- Update to 3.4 +- Fix layout breakage in the doc +- Update the refresh-gitolite action of pagure-admin for the new interface +- Stop using readlines() to drop the trailing new line character +- Fix logging by properly formatting the message +- Fix the issue count in the My Issues page (Vivek Anand) +- Add a configuration key to disable deleting branches from the UI +- Add a configuration key to disable managing user's ssh key in pagure +- Fix the vagrant environment (Clement Verna) +- Fix branch support for the git blame view +- Update the PR ref when the PR is updated +- Add a configuration key to disable the deploy keys in a pagure instance +- Fix login when groups are managed outside of pagure +- Fix setting up the git hooks when there is no DOCS_FOLDER set +- Fix installing up the pagure hooks when there is no DOCS_FOLDER set + * Mon Jul 24 2017 Pierre-Yves Chibon - 3.3.1-1 - Update to 3.3.1 - Fix typo in the alembic migration present in 3.3 diff --git a/pagure/__init__.py b/pagure/__init__.py index f8c2974..107d2e3 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__ = '3.3.1' +__version__ = '3.4' __api_version__ = '0.15'