From 4d1da104339eb1518273bcb6260168376c00ebb8 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 13 2015 11:10:41 +0000 Subject: Release 0.1.32 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 6098670..17fa29e 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,16 +3,16 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 13, 2015 (release 0.1.31), the list looks as follow: +On November 13, 2015 (release 0.1.32), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3183 Pierre-Yves Chibon + 3204 Pierre-Yves Chibon 59 Johan Cwiklinski + 14 Sayan Chowdhury 13 Ghost-script 13 Mathieu Bridon - 13 Sayan Chowdhury 8 Lei Yang 8 Ralph Bean 6 Patrick Uiterwijk @@ -20,16 +20,20 @@ Number of commits Contributor 4 Maciej Lasyk 3 Dhriti Shikhar 3 Kushal Khandelwal + 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 1 Stanislav Ochotnicky + 1 abhishek 1 jcvicelli 1 pingou + 1 tenstormavi ================= =========== This list is generated using diff --git a/files/pagure.spec b/files/pagure.spec index e3221de..468a416 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.31 +Version: 0.1.32 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,28 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Fri Nov 13 2015 Pierre-Yves Chibon - 0.1.32-1 +- Update to 0.1.32 +- Fix the example configuration file +- Make pagure work on MySQL +- Hide sections on the front page only if the user is logged out +- Fix the release page where sometime tags are commits +- Escape the raw html in markdown +- Decode the bytes returned by pygit2 to try to guess if the content is a text + or not +- Fix the 'Clear' button on the pull-request page (farhaanbukhsh) +- Fix installing pagure in a venv +- Fix uploading images when editing the first comment of a ticket +- Let the author of the merge commit be the user doing the merge +- Suggest the title of the PR only if it has one and only one commit in +- Do not hide sections on the user page if we set some to be hidden on the front + page +- Forward the head to the commits page to fix the pull-request button +- Ensure we create the git-daemon-export-ok when forking a repo (fixes cloning + over https) +- Add instructions on how to get pagure working in a venv (Daniel Mach) +- Improve the way we retrieve and check pygit2's version (Daniel Mach) + * Tue Oct 13 2015 Pierre-Yves Chibon - 0.1.31-1 - Forward the bail_on_tree boolean when iterating so that we know how to behave when we run into a git tree (where we expected a git blob) diff --git a/pagure/__init__.py b/pagure/__init__.py index 5313b71..ab1032a 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.31' +__version__ = '0.1.32' __api_version__ = '0.6' diff --git a/setup.py b/setup.py index 055f924..1dbf3c4 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,8 @@ Setup script # Required to build on EL6 __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources +import os +import re from setuptools import setup