From f40ea7b0d955d57788edf9db93a6661156582657 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 14 2017 10:18:17 +0000 Subject: Release 3.6 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 315d6b6..5dc4afd 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,23 +3,23 @@ Contributors to pagure Pagure would be nothing without its contributors. -On August 08, 2017 (release 3.5), the list looks as follow: +On August 14, 2017 (release 3.6), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5361 Pierre-Yves Chibon + 5367 Pierre-Yves Chibon 191 Ryan Lerch - 145 Vivek Anand + 146 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk 77 Farhaan Bukhsh - 68 Clement Verna + 70 Clement Verna 59 Johan Cwiklinski 47 Mark Reynolds 32 Pradeep CE (cep) + 31 Matt Prahl 30 Lubomír Sedlář - 28 Matt Prahl 22 rahul Bajaj 20 Jeremy Cline 19 Gaurav Kumar diff --git a/files/pagure.spec b/files/pagure.spec index e5a4993..bd2a11d 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.5 +Version: 3.6 Release: 1%{?dist} Summary: A git-centered forge @@ -385,6 +385,19 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Mon Aug 14 2017 Pierre-Yves Chibon - 3.6-1 +- Update to 3.6 +- Blacklist creating a group named 'group' +- Allow having a dedicated worker to compile the gitolite configuration file +- Fix removing groups of a project +- Make the API returns only open issues by default (as documented) (Clement + Verna) +- Improve the README regarding the use of eventlet to run the tests (Vivek + Anand) +- Give Pagure site admins the ability to modify projects using the API (Matt + Prahl) +- Add the "git/generateacls" API endpoint for projects (Matt Prahl) + * Tue Aug 08 2017 Pierre-Yves Chibon - 3.5-1 - Update to 3.5 - Fix login when groups are managed outside diff --git a/pagure/__init__.py b/pagure/__init__.py index 431b719..0da5514 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,8 +12,8 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources # noqa: E402,F401 -__version__ = '3.5' -__api_version__ = '0.15' +__version__ = '3.6' +__api_version__ = '0.16' import datetime # noqa: E402