From bf2036739cf1cb1ca8732606c4f715a6c135d295 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 19 2017 13:57:58 +0000 Subject: Release 3.13.1 Signed-off-by: Pierre-Yves Chibon --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 702450b..4b62c69 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,16 @@ Upgrading Pagure ================ +From 3.13 to 3.13.1 +------------------- + +The release 3.13.1 brings one change to the database schema to remove a database +constraint (pull_requests_check in the pull_requests table) that is not only no +longer needed but even blocking now. + +* Update the data schema using alembic: ``alembic upgrade head`` + + From 3.12 to 3.13 ----------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index e55e82a..274a7d4 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -8,7 +8,7 @@ On December 18, 2017 (release 3.13), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5619 Pierre-Yves Chibon + 5623 Pierre-Yves Chibon 193 Ryan Lerch 170 Vivek Anand 139 farhaanbukhsh diff --git a/files/pagure.spec b/files/pagure.spec index b846896..b5a69ce 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -1,5 +1,5 @@ Name: pagure -Version: 3.13 +Version: 3.13.1 Release: 1%{?dist} Summary: A git-centered forge @@ -366,6 +366,11 @@ install -p -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue Dec 19 2017 Pierre-Yves Chibon - 3.13.1-1 +- Update to 3.13.1 +- Add an alembic migration removing a constraint on the DB that not only no + longer needed but even blocking regular use now + * Mon Dec 18 2017 Pierre-Yves Chibon - 3.13-1 - Update to 3.13 - Fix the alembic migration adjusting the pull_requests table diff --git a/pagure/__init__.py b/pagure/__init__.py index f386e6d..9b3d787 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.13' +__version__ = '3.13.1' __api_version__ = '0.22'