From 34160d027681f874292ff73bf1c0d309fd9ce9ae Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 11 2017 18:56:51 +0000 Subject: Release 3.9 Signed-off-by: Pierre-Yves Chibon --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 9d8af67..4c74475 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On September 29, 2017 (release 3.8), the list looks as follow: +On October 11, 2017 (release 3.9), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 5435 Pierre-Yves Chibon + 5455 Pierre-Yves Chibon 191 Ryan Lerch 165 Vivek Anand 139 farhaanbukhsh @@ -36,14 +36,15 @@ Number of commits Contributor 8 Shengjing Zhu 5 Mike McLean 5 Oliver Gutierrez + 5 Patrick Uiterwijk 5 Paul W. Frields 5 mprahl 5 vanzhiganov 5 yangl1996 4 Eric Barbour 4 Maciej Lasyk - 4 Patrick Uiterwijk 4 René Genz + 4 Till Maas 3 Ankush Behl 3 Anthony Lackey 3 Dhriti Shikhar @@ -54,7 +55,6 @@ Number of commits Contributor 3 Pedro Lima 3 Ricky Elrod 3 Sergio Durigan Junior - 3 Till Maas 3 bill auger 3 cep 3 shivani @@ -110,6 +110,7 @@ Number of commits Contributor 1 prasad0896 1 rishika7000 1 ryanlerch + 1 sclark 1 skrzepto 1 smit thakkar 1 smurfix diff --git a/files/pagure.spec b/files/pagure.spec index e9959e3..ef70863 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.8 +Version: 3.9 Release: 1%{?dist} Summary: A git-centered forge @@ -385,6 +385,26 @@ install -m 644 pagure-loadjson/pagure_loadjson.service \ %changelog +* Wed Oct 11 2017 Pierre-Yves Chibon - 3.9-1 +- Update to 3.9 +- Fix the editing issue when the user does not actually edit anything +- Fix the internal API endpoint: get branches of commit to support namespace +- Consolidate the code in our custom markdown processor (fixes linking to a + commit on a namespaced project) +- Fix deleting a project by also removing it from the gitolite config +- Warn if the user is about to just recompile the gitolite config via + pagure-admin (Patrick Uiterwijk) +- Update .git/config example in doc/usage/pull_requests.rst (sclark) +- Include the PRs opened by the user on the 'My pull-requests' page +- Add to pagure-admin the actions: get-watch and update-watch +- Add to pagure-admin the action: read-only +- Add the user's fullname (if there is one) as title when they comment +- Fix the title of the percentage when hovering over the red bar in issues +- Make the box to edit comments bigger +- Document in the usage section where to find the API documentation +- Provide the sha256 and sha512 of the releases in a CHECKSUMS file +- Remove clear buttons (Till Maas) + * Fri Sep 29 2017 Pierre-Yves Chibon - 3.8-1 - Update to 3.8 - Fix API documentation for git/branch (Matt Prahl) diff --git a/pagure/__init__.py b/pagure/__init__.py index bf2ef9c..497a95d 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources # noqa: E402,F401 -__version__ = '3.8' +__version__ = '3.9' __api_version__ = '0.18'