From 523fbd4a8a70f3fd45339f4861a68daf3cc742de Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 20 2016 10:37:50 +0000 Subject: Release 2.6 --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 8508d70..0788be4 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,16 @@ Upgrading Pagure ================ +From 2.5 to 2.6 +--------------- + +2.6 brings quite a few changes and some of them impacting the database scheme. + +Therefore when upgrading from 2.4 to 2.6, you will have to: + +* Update the database schame using alembic: ``alembic upgrade head`` + + From 2.4 to 2.5 --------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6e87d8d..1c5a0dd 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,17 +3,17 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Sep 13, 2016 (release 2.5), the list looks as follow: +On Sep 20, 2016 (release 2.6), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4369 Pierre-Yves Chibon + 4400 Pierre-Yves Chibon 186 Ryan Lerch 89 farhaanbukhsh 59 Johan Cwiklinski 51 Clement Verna - 49 Vivek Anand + 50 Vivek Anand 27 Farhaan Bukhsh 18 Sayan Chowdhury 17 Lubomír Sedlář @@ -34,6 +34,7 @@ Number of commits Contributor 3 Anthony Lackey 3 Dhriti Shikhar 3 Jan Pokorný + 3 Jason Tibbitts 3 Kushal Khandelwal 3 Pedro Lima 3 Sergio Durigan Junior @@ -48,11 +49,12 @@ Number of commits Contributor 2 bruno 2 dhrish20 2 tenstormavi + 1 Aleksandra Fedorova (bookwar) 1 Anthony Lackey 1 David Caro 1 Eric Barbour 1 Haikel Guemar - 1 Jason Tibbitts + 1 Jeremy Cline 1 Kunaal Jain 1 Mathew Robinson 1 Pierre-YvesChibon diff --git a/files/pagure.spec b/files/pagure.spec index 95a9877..6664d69 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: 2.5 +Version: 2.6 Release: 1%{?dist} Summary: A git-centered forge @@ -298,6 +298,28 @@ install -m 644 pagure-ci/pagure_ci.service \ %changelog +* Tue Sep 20 2016 Pierre-Yves Chibon - 2.6-1 +- Update to 2.6 +- Fix creating new PR from the page listing all the PRs +- Fix grammar error in the issues and PRs page (Jason Tibbitts) +- Fall back to the user's username if no fullname is provided (Vivek Anand) +- Fix typo in the using_docs documentation page (Aleksandra Fedorova (bookwar)) +- Fix viewing plugins when the project has a namespace (and the redirection + after that) +- Rework the milestone, so that a ticket can only be assigned to one milestone + and things look better +- Add a project wide setting allowing to make all new tickets private by default + (with the option to make them public) +- Allow toggling the privacy setting when editing the ticket's metadata +- Rework some of the logic of pagure-ci for when it searches the project related + to a receive notification +- Fix the label of the button to view all close issues to be consistent with the + PR page (Jeremy Cline) +- Add the possibility for projects to notify specific email addresses about + issues/PRs update +- Fix loading tickets from the ticket git repository (fixes importing project to + pagure) + * Tue Sep 13 2016 Pierre-Yves Chibon - 2.5-1 - Update to 2.5 - Don't track pagure_env (venv) dir (Paul W. Frields) diff --git a/pagure/__init__.py b/pagure/__init__.py index 073551d..66274b6 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.5' +__version__ = '2.6' __api_version__ = '0.7'