From 6e298638f08b0d9a4aa9a11e575b9a6bd3d90413 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 02 2016 16:25:25 +0000 Subject: Release 2.10 --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 71c67f0..9ba0777 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,15 @@ Upgrading Pagure ================ +From 2.9 to 2.10 +---------------- + +The 2.10 releases brings some little changes to the database scheme. + +Therefore when upgrading to 2.10, you will have to: + +* Update the database schame using alembic: ``alembic upgrade head`` + From 2.8 to 2.9 --------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index dfe68f6..2943006 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,30 +3,31 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Nov 18, 2016 (release 2.9), the list looks as follow: +On Dec 2, 2016 (release 2.10), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4692 Pierre-Yves Chibon - 190 Ryan Lerch + 4716 Pierre-Yves Chibon + 191 Ryan Lerch 89 farhaanbukhsh 59 Johan Cwiklinski 56 Vivek Anand 55 Clement Verna 31 Farhaan Bukhsh 26 Patrick Uiterwijk - 19 Lubomír Sedlář + 25 Lubomír Sedlář 18 Sayan Chowdhury + 16 Jeremy Cline 15 Gaurav Kumar 15 Ralph Bean 14 Justin W. Flory 13 Ghost-script - 13 Jeremy Cline 13 Mathieu Bridon 10 rahul Bajaj 8 Lei Yang 7 Adam Williamson + 5 Mark Reynolds 5 Mike McLean 5 Oliver Gutierrez 5 Paul W. Frields @@ -47,7 +48,7 @@ Number of commits Contributor 3 skrzepto 3 tenstormavi 2 Daniel Mach - 2 Mark Reynolds + 2 Michael Watters 2 Nuno Maltez 2 Rahul Bajaj 2 Richard Marko @@ -60,6 +61,7 @@ Number of commits Contributor 2 “AnjaliPardeshi” <“anjalipardeshi92@gmail.com”> 1 Aleksandra Fedorova (bookwar) 1 Anthony Lackey + 1 Brian (bex) Exelbierd 1 David Caro 1 Eric Barbour 1 Haikel Guemar diff --git a/files/pagure.spec b/files/pagure.spec index 5e94977..83fb86e 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.9 +Version: 2.10 Release: 1%{?dist} Summary: A git-centered forge @@ -298,6 +298,26 @@ install -m 644 pagure-ci/pagure_ci.service \ %changelog +* Fri Dec 02 2016 Pierre-Yves Chibon - 2.10-1 +- Update to 2.10 +- Updating language on not found page (Brian (bex) Exelbierd) +- Add a view for open pull requests and issues (Jeremy Cline) +- Issue 1540 - New meta-data custom field type of "link" (Mark Reynolds) +- Fix overflow issue with comment preview and pre (Ryan Lerch) +- Issue 1549 - Add "updated_on" to Issues and make it queryable (Mark Reynolds) +- Drop UPLOAD_FOLDER in favor of UPLOAD_FOLDER_URL +- Make the group_name be of max 255 characters +- Bug - Update documentation to match the default EMAIL_SEND value (Michael + Watters) +- Change - Fix grammar in UI messages around enabling/deactivating git hooks + (Michael Watters) +- Allow resetting the priorities of a project +- Several fixes and enhancements around the activity calendarheatmap +- Add quick_replies field to project (Lubomír Sedlář) +- Fix blaming files containing non-ascii characters (Jeremy Cline and I) +- Include regular contributors when checking if user is watching a project +- List subscribers on the issue pages (Mark Renyolds and I) + * Fri Nov 18 2016 Pierre-Yves Chibon - 2.9-1 - Update to 2.9 - Fix redirecting after updating an issue on a project with namespace (Vivek diff --git a/pagure/__init__.py b/pagure/__init__.py index 614c207..2121707 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,8 +12,8 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.9' -__api_version__ = '0.9' +__version__ = '2.10' +__api_version__ = '0.10' import datetime