From c6282762030531cdae1998078cdcfec3462a3390 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 23 2017 10:54:14 +0000 Subject: Release 2.90.0 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 2a73c64..6c6c563 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,26 +3,26 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 18, 2017 (release 2.15.1), the list looks as follow: +On May 23, 2017 (release 2.90.0), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5242 Pierre-Yves Chibon + 5247 Pierre-Yves Chibon 191 Ryan Lerch 139 farhaanbukhsh 138 Vivek Anand + 108 Patrick Uiterwijk 77 Farhaan Bukhsh 60 Clement Verna 59 Johan Cwiklinski - 51 Patrick Uiterwijk 47 Mark Reynolds 32 Pradeep CE (cep) 30 Lubomír Sedlář 22 rahul Bajaj 20 Jeremy Cline + 20 Matt Prahl 19 Gaurav Kumar - 19 Matt Prahl 18 Sayan Chowdhury 17 Abhijeet Kasurde 15 Ralph Bean @@ -50,6 +50,7 @@ Number of commits Contributor 3 Kushal Khandelwal 3 Pedro Lima 3 Sergio Durigan Junior + 3 Shengjing Zhu 3 Till Maas 3 bill auger 3 cep @@ -61,7 +62,6 @@ Number of commits Contributor 2 Rahul Bajaj 2 Richard Marko 2 Ricky Elrod - 2 Shengjing Zhu 2 Simo Sorce 2 William Moreno Reyes 2 bruno diff --git a/files/pagure.spec b/files/pagure.spec index 0291bc8..81e5009 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.15.1 +Version: 2.90.0 Release: 1%{?dist} Summary: A git-centered forge @@ -384,6 +384,12 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue May 23 2017 Pierre-Yves Chibon - 2.90.0-1 +- Bump to 2.90, pre-release of 3.0 +- Re-architecture the interactions with git (especially the writing part) to be + handled by an async worker (Patrick Uiterwijk) +- Add the ability to filter projects by owner (Matt Prahl) + * Thu May 18 2017 Pierre-Yves Chibon - 2.15.1-1 - Update to 2.15.1 - Fix the requirements on straight.plugin in the requirements.txt file diff --git a/pagure/__init__.py b/pagure/__init__.py index d4d0fe7..b485671 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__ = '2.15.1' -__api_version__ = '0.13' +__version__ = '2.90.0' +__api_version__ = '0.14' import datetime # noqa: E402