From 5d039bde7b6de3e8a5c226374d1adb0e3124f349 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 18 2015 14:41:12 +0000 Subject: Release 0.1.16 Fix the additional fixes: - Add python-redis as a dependency - Ship the ev-server folder with the sources - Fix the name of the %files section for the -ev subpackage --- diff --git a/MANIFEST.in b/MANIFEST.in index 8ccc23c..c107032 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,3 +6,4 @@ recursive-include milters * recursive-include tests * recursive-include doc * recursive-include alembic * +recursive-include ev-server * diff --git a/doc/contributors.rst b/doc/contributors.rst index f38d864..a166be4 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 16, 2015 (release 0.1.15), the list looks as follow: +On June 18, 2015 (release 0.1.16), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2650 Pierre-Yves Chibon + 2728 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury @@ -19,6 +19,7 @@ Number of commits Contributor 2 Patrick Uiterwijk 1 Lei Yang 1 Stanislav Ochotnicky + 1 pingou ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index b118060..53eea91 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.15 +Version: 0.1.16 Release: 1%{?dist} Summary: A git-centered forge @@ -36,6 +36,7 @@ BuildRequires: python-straight-plugin BuildRequires: python-wtforms BuildRequires: python-munch BuildRequires: python-enum34 +BuildRequires: python-redis # EPEL6 %if ( 0%{?rhel} && 0%{?rhel} == 6 ) @@ -66,6 +67,7 @@ Requires: python-openid-teams Requires: python-straight-plugin Requires: python-wtforms Requires: python-munch +Requires: python-redis Requires: mod_wsgi # No dependency of the app per se, but required to make it working. @@ -203,13 +205,20 @@ install -m 644 ev-server/pagure_ev.service \ %{_datadir}/pagure/comment_email_milter.py* -%files +%files ev %license LICENSE %{_libexecdir}/pagure-ev/ %{_unitdir}/pagure_ev.service %changelog +* 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 +- Allow online editing to a new branch or any of the existing ones +- Allow the
html tags in markdown +- Add eventsource support in the ticket and pull-request pages + * Tue Jun 16 2015 Pierre-Yves Chibon - 0.1.15-1 - Update 0.1.15 - Use a monospace font for the commit hash diff --git a/pagure/__init__.py b/pagure/__init__.py index 16ed98c..6ed5ee0 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.15' +__version__ = '0.1.16' __api_version__ = '0.4'