From b236a4ddc1d71986dc3f6ac52459c6c7e9615480 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 22 2015 12:02:00 +0000 Subject: Release 0.1.17 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index a166be4..9c0d3d5 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On June 18, 2015 (release 0.1.16), the list looks as follow: +On June 22, 2015 (release 0.1.17), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2728 Pierre-Yves Chibon + 2734 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury @@ -17,6 +17,7 @@ Number of commits Contributor 5 yangl1996 3 Kushal Khandelwal 2 Patrick Uiterwijk + 1 aal Jain 1 Lei Yang 1 Stanislav Ochotnicky 1 pingou diff --git a/files/pagure.spec b/files/pagure.spec index 53eea91..af1f37e 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.16 +Version: 0.1.17 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,16 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Mon Jun 22 2015 Pierre-Yves Chibon - 0.1.17-1 +- Update to 0.1.17 +- Fix for missing docs of API issue add comment (Kunaal Jain) +- Fix the systemd init file +- Be more careful about the URL specified, it may be of the wrong format in the + eventsource server +- Allow configuring the port where the event source server runs in the + configuration +- Fix bug in filter_img_src introduced with its moved to the backend library + * Thu Jun 18 2015 Pierre-Yves Chibon - 0.1.16-1 - Update to 0.1.16 - Clone all the remote branches when cloning a project diff --git a/pagure/__init__.py b/pagure/__init__.py index 6ed5ee0..32eec7b 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.16' +__version__ = '0.1.17' __api_version__ = '0.4'