diff --git a/UPGRADING.rst b/UPGRADING.rst index 10ca6a9..702450b 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,14 @@ Upgrading Pagure ================ +From 3.12 to 3.13 +----------------- + +The release 3.13 brings some features and bug fixes but does not have any +changes made to the database schema or new configuration keys. Update should be +straight forward. + + From 3.11 to 3.12 ----------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 9cdc6e2..e55e82a 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,17 +3,17 @@ Contributors to pagure Pagure would be nothing without its contributors. -On December 8, 2017 (release 3.12), the list looks as follow: +On December 18, 2017 (release 3.13), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5608 Pierre-Yves Chibon + 5619 Pierre-Yves Chibon 193 Ryan Lerch 170 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk - 87 Clement Verna + 88 Clement Verna 77 Farhaan Bukhsh 59 Johan Cwiklinski 47 Mark Reynolds @@ -93,6 +93,7 @@ Number of commits Contributor 1 Kunaal Jain 1 Mathew Robinson 1 Mohan Boddu + 1 Neha Kandpal 1 Pierre-YvesChibon 1 Robert Bost 1 Sachin Kamath diff --git a/files/pagure.spec b/files/pagure.spec index e09b0c9..b846896 100644 --- a/files/pagure.spec +++ b/files/pagure.spec @@ -1,5 +1,5 @@ Name: pagure -Version: 3.12 +Version: 3.13 Release: 1%{?dist} Summary: A git-centered forge @@ -366,6 +366,21 @@ install -p -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Mon Dec 18 2017 Pierre-Yves Chibon - 3.13-1 +- Update to 3.13 +- Fix the alembic migration adjusting the pull_requests table +- Fix how is created the db in the docker development environment (Clement + Verna) +- Ensure optional dependencies remain optional +- Ensure groups cannot be created when it is not allowed +- When listing issues, include the project as well in the user's issue API + endpoint +- Sort forks by date of creation (descending) (Neha Kandpal) +- Ensure the pagination arguments are returned when a page is specified +- Make the milestone clickable on the issue page +- Make the celery tasks update their status so we know when they are running (vs + pending) + * Fri Dec 08 2017 Pierre-Yves Chibon - 3.12-1 - Update to 3.12 - Adjust the API endpoint listing project to not return a 404 when not projects diff --git a/pagure/__init__.py b/pagure/__init__.py index 0843790..f386e6d 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.12' -__api_version__ = '0.21' +__version__ = '3.13' +__api_version__ = '0.22' import datetime # noqa: E402