From c2f959e579c7b74e3ea270f35f6968e53327001d Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 19 2015 14:28:28 +0000 Subject: Release 0.1.4 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index dc2d45f..71177bc 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 13, 2015 (release 0.1.3), the list looks as follow: +On May 19, 2015 (release 0.1.4), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2207 Pierre-Yves Chibon + 2225 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index 809a485..0a3cb7e 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.3 +Version: 0.1.4 Release: 1%{?dist} Summary: A git-centered forge @@ -165,6 +165,16 @@ install -m 644 milters/comment_email_milter.py \ %changelog +* Tue May 19 2015 Pierre-Yves Chibon - 0.1.4-1 +- Update to 0.1.4 +- Fix loading requests and tickets from git (allows syncing projects between + pagure instances) +- Add to the template .wsgi file a way to re-locate the tmp folder to work + around a bug in libgit2 +- Fix unit-tests suite +- Adjust the spec file to install all the files required for the milters +- Fix the `View` button on the pull-request pages + * Wed May 13 2015 Pierre-Yves Chibon - 0.1.3-1 - Update to 0.1.3 - Add support for gitolite3 diff --git a/pagure/__init__.py b/pagure/__init__.py index 2309a30..89fb027 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.3' +__version__ = '0.1.4' __api_version__ = '1'