From 4e6531e07c718bbaf8b4520f430303b2688c6330 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 05 2017 09:14:02 +0000 Subject: Release 3.7 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 5dc4afd..0f41643 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,29 +3,29 @@ Contributors to pagure Pagure would be nothing without its contributors. -On August 14, 2017 (release 3.6), the list looks as follow: +On September 5, 2017 (release 3.7), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5367 Pierre-Yves Chibon + 5389 Pierre-Yves Chibon 191 Ryan Lerch - 146 Vivek Anand + 159 Vivek Anand 139 farhaanbukhsh 126 Patrick Uiterwijk + 81 Clement Verna 77 Farhaan Bukhsh - 70 Clement Verna 59 Johan Cwiklinski 47 Mark Reynolds + 32 Matt Prahl 32 Pradeep CE (cep) - 31 Matt Prahl 30 Lubomír Sedlář 22 rahul Bajaj 20 Jeremy Cline 19 Gaurav Kumar 18 Abhijeet Kasurde 18 Sayan Chowdhury - 15 Ralph Bean + 17 Ralph Bean 15 Vibhor Verma 14 Justin W. Flory 13 Ghost-script @@ -55,6 +55,7 @@ Number of commits Contributor 3 Till Maas 3 bill auger 3 cep + 3 mprahl 3 shivani 3 skrzepto 3 tenstormavi @@ -62,6 +63,7 @@ Number of commits Contributor 2 Daniel Mach 2 Michael Watters 2 Nuno Maltez + 2 Ompragash 2 Rahul Bajaj 2 Richard Marko 2 Simo Sorce @@ -78,6 +80,7 @@ Number of commits Contributor 1 Brian (bex) Exelbierd 1 Carl George 1 Charelle Collett + 1 Chenxiong Qi 1 David Caro 1 Eashan 1 Haikel Guemar @@ -85,16 +88,17 @@ Number of commits Contributor 1 Igor Gnatenko 1 Kunaal Jain 1 Mathew Robinson - 1 Ompragash 1 Patrick Uiterwijk 1 Pierre-YvesChibon 1 Robert Bost + 1 Sachin Kamath 1 Snehal Karale 1 Stanislav Laznicka 1 Stanislav Ochotnicky 1 Stefan Bühler 1 Stephen Gallagher 1 Tiago M. Vieira + 1 Till Hofmann 1 Vyacheslav Anzhiganov 1 Yves Martin 1 abhishek diff --git a/files/pagure.spec b/files/pagure.spec index bd2a11d..0cf9578 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: 3.6 +Version: 3.7 Release: 1%{?dist} Summary: A git-centered forge @@ -385,6 +385,39 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Tue Sep 05 2017 Pierre-Yves Chibon - 3.7-1 +- Update to 3.7 +- Update link to markdown documentation, fix typo on the way (Till Hofmann) +- Add feature allowing to prevent project creation in the UI only +- Remove the front whitespace from the commit markdown regex (Clement Verna) +- New API endpoint to modify multiple custom fields (Clement Verna) +- Update the example output of the API endpoint giving project information +- Add the ability to order issues by ascending or descending (Matt Prahl) +- Consolidate around pagure.lib.git.generate_gitolite_acls +- Regenerate the gitolite ACL when changing the main admin of a project +- Change the documentation link end point (Clement Verna) +- Fixes the README.rst file (Ompragash) +- Update Docker Environment (Clement Verna) +- Add a configuration key to allow deleting forks but not projects +- Show the entire project name in the UI on the delete button +- Add support for a custom user in the SSH URL +- Do not show the SSH url when the user isn't logged in +- Update the documentation on how to work with pull requests (Clement Verna) +- Support both JSON and Form POST on APIs that accepted only JSON (Matt Prahl) +- Don't expand groups in the watchers API (Ralph Bean) +- Add a new branch API (Matt Prahl) +- Add bash function example to PR documentation (Clement Verna) +- Add the star project feature (Vivek Anand) +- Update the overview diagram +- Fix the rendering of the API version in the html page (Clement Verna) +- Fix message-id not having FQDN (Sachin Kamath) +- Mention on what the rebase was done +- Remove the line numbers coming from pygments on pull-requests +- Include the targeted branch in the list of PRs +- Separately link user/namespace/name +- Fix the pagination when listing projects via the view_projects endpoints +- Retain access when transfering ownership of the project (Matt Prahl) + * Mon Aug 14 2017 Pierre-Yves Chibon - 3.6-1 - Update to 3.6 - Blacklist creating a group named 'group' diff --git a/pagure/__init__.py b/pagure/__init__.py index c58df7f..6175f64 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.6' -__api_version__ = '0.16' +__version__ = '3.7' +__api_version__ = '0.17' import datetime # noqa: E402