From bf84c64a4569726ed4aa565680585ba94e1024a0 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 13 2017 09:03:15 +0000 Subject: Release 3.10 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 9b9f99e..977c7a7 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,21 @@ Upgrading Pagure ================ +From 3.9 to 3.10 +---------------- + +The release 3.10 brings some changes to the database schema. + +* Update the data schema using alembic: ``alembic upgrade head`` + + +From 3.8 to 3.9 +--------------- + +This release brings a number of bug fixes and features but does not require +any special precaution when upgrading. + + From 3.7 to 3.8 --------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 4c74475..f3dac2d 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,14 +3,14 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 11, 2017 (release 3.9), the list looks as follow: +On October 13, 2017 (release 3.10), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5455 Pierre-Yves Chibon + 5466 Pierre-Yves Chibon 191 Ryan Lerch - 165 Vivek Anand + 166 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk 84 Clement Verna diff --git a/files/pagure.spec b/files/pagure.spec index ef70863..fd0b53b 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.9 +Version: 3.10 Release: 1%{?dist} Summary: A git-centered forge @@ -385,6 +385,21 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Fri Oct 13 2017 Pierre-Yves Chibon - 3.10-1 +- Update to 3.10 +- Show the branches' head in the commit list +- Log which IP is being denied access to the internal endpoints (makes debugging + easier) +- Link to pagure's own markdown documentation and warn that remote images are + not supported +- Document how to run a single test file or a single test in a file +- Fix trying to decode when the encoding is None +- Include an url_path field in the JSON representation of a project +- Generalize the description of the ACLs (since we know have project-less API + tokens) +- Drop ``--autoreload`` from the .service files as celery dropped support for it + and it never really worked (Vivek Anand) + * Wed Oct 11 2017 Pierre-Yves Chibon - 3.9-1 - Update to 3.9 - Fix the editing issue when the user does not actually edit anything diff --git a/pagure/__init__.py b/pagure/__init__.py index 497a95d..bc03707 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.9' -__api_version__ = '0.18' +__version__ = '3.10' +__api_version__ = '0.19' import datetime # noqa: E402