From 347231e827c6c2145c3fbcbfa7f894beba1e3699 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 20 2015 08:15:30 +0000 Subject: Release 0.1.33 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 17fa29e..02fd526 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,29 +3,29 @@ Contributors to pagure Pagure would be nothing without its contributors. -On November 13, 2015 (release 0.1.32), the list looks as follow: +On November 20, 2015 (release 0.1.33), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3204 Pierre-Yves Chibon + 3212 Pierre-Yves Chibon 59 Johan Cwiklinski + 14 Ralph Bean 14 Sayan Chowdhury 13 Ghost-script 13 Mathieu Bridon 8 Lei Yang - 8 Ralph Bean 6 Patrick Uiterwijk 5 yangl1996 4 Maciej Lasyk 3 Dhriti Shikhar 3 Kushal Khandelwal + 3 farhaanbukhsh 2 Daniel Mach 2 Ricky Elrod 2 Simo Sorce 2 Till Maas 2 dhrish20 - 2 farhaanbukhsh 1 David Caro 1 Jan Pokorný 1 Kunaal Jain diff --git a/files/pagure.spec b/files/pagure.spec index 468a416..f56a67a 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: 0.1.32 +Version: 0.1.33 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,21 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Fri Nov 20 2015 Pierre-Yves Chibon - 0.1.33-1 +- Update to 0.1.33 +- Prevent project with a name starting with a non-alphanumerical character + (Farhaanbukhsh) +- Ensure we appropriately set the private flag when creating an issue +- Add an activity graph on the user profile using datagrepper +- Sometime the identified we get is a Tag, not a commit (fixes traceback + received by email) +- Order the PR from the most recent to the oldest +- Fix the patch view of a PR when we cannot find one of the commit (fixes + traceback received by email) +- Allow user that are not admin to create a remote pull-request +- Fix closing the EV server by calling the appropriate variable +- Fix generating the diff of remote pull-request + * Fri Nov 13 2015 Pierre-Yves Chibon - 0.1.32-1 - Update to 0.1.32 - Fix the example configuration file diff --git a/pagure/__init__.py b/pagure/__init__.py index ab1032a..d617ad0 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '0.1.32' +__version__ = '0.1.33' __api_version__ = '0.6'