From 9316bde9f5a1037ece005784ee5fbe7103f25109 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 16 2015 15:19:49 +0000 Subject: Release 0.1.15 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 0418d18..f38d864 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,19 +3,21 @@ Contributors to pagure Pagure would be nothing without its contributors. -On June 15, 2015 (release 0.1.14), the list looks as follow: +On June 16, 2015 (release 0.1.15), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2642 Pierre-Yves Chibon + 2650 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury 8 Ghost-script 8 Ralph Bean + 5 yangl1996 3 Kushal Khandelwal 2 Patrick Uiterwijk + 1 Lei Yang 1 Stanislav Ochotnicky ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index 5975c22..23469d2 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.14 +Version: 0.1.15 Release: 1%{?dist} Summary: A git-centered forge @@ -177,6 +177,15 @@ install -m 644 milters/comment_email_milter.py \ %changelog +* Tue Jun 16 2015 Pierre-Yves Chibon - 0.1.15-1 +- Update 0.1.15 +- Use a monospace font for the commit hash +- Remove duplicated "commit" id in the HTML (causing a graphical bug in the + commit page) +- Secure the input using the no_js filter instead of relying on a restrictive + regex for PR and issue titles +- Support ',' in the tags field since it's required to specify multiple tags + * Fri Jun 12 2015 Pierre-Yves Chibon - 0.1.14-1 - Update to 0.1.14 - Remove all new lines characters from the ssh key uploaded diff --git a/pagure/__init__.py b/pagure/__init__.py index fe145be..e361219 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.14' +__version__ = '0.1.15' __api_version__ = '0.4'