From 9a8ed82e68436b51387297a7cf1248696e094ba1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 04 2017 14:26:37 +0000 Subject: Release 3.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 2f7bbed..671ad9e 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,14 @@ Upgrading Pagure ================ +From 3.0 to 3.1 +--------------- + +While not being a bug fix, this release has no database schema changes. +However, this release breaks the plugin interface for auth introduced in 3.0. If +you are using pagure-dist-git, make sure to upgrade to at least 0.3. + + From 2.15 to 3.0 ---------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 4d937d2..acf20cf 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,14 +3,14 @@ Contributors to pagure Pagure would be nothing without its contributors. -On June 30, 2017 (release 3.0), the list looks as follow: +On July 4, 2017 (release 3.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5311 Pierre-Yves Chibon + 5317 Pierre-Yves Chibon 191 Ryan Lerch - 140 Vivek Anand + 143 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk 77 Farhaan Bukhsh diff --git a/files/pagure.spec b/files/pagure.spec index d670f4e..09633db 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.0 +Version: 3.1 Release: 1%{?dist} Summary: A git-centered forge @@ -384,6 +384,16 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue Jul 04 2017 Pierre-Yves Chibon - 3.1-1 +- Update to 3.1 +- Allow project-less API token to create new tickets +- Tips/tricks: add info on how to validate local user account without email + verification (Vivek Anand) +- Optimize the generation of the gitolite configuration +- Improve logging and load only the plugin of interest instead of all of them +- Show the task's status on the wait page and avoid reloading the page +- Don't show '+' sign when GROUP_MNGT is off (Vivek Anand) + * Fri Jun 30 2017 Pierre-Yves Chibon - 3.0-1 - Update to 3.0 - Since 2.90 celery has become a requirement as well as one of the queueing diff --git a/pagure/__init__.py b/pagure/__init__.py index f07f7bf..2b780b9 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.0' +__version__ = '3.1' __api_version__ = '0.14'