From ba162aa31f077cb1fefa9c31bf712bb1522e7c8d Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 29 2015 13:15:38 +0000 Subject: Release 0.1.9 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 79d20b6..e665ebf 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 27, 2015 (release 0.1.8), the list looks as follow: +On May 29, 2015 (release 0.1.9), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2256 Pierre-Yves Chibon + 2425 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index c0225e7..1dc0783 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.8 +Version: 0.1.9 Release: 1%{?dist} Summary: A git-centered forge @@ -34,6 +34,7 @@ BuildRequires: python-openid-teams BuildRequires: python-straight-plugin BuildRequires: python-wtforms BuildRequires: python-munch +BuildRequires: python-enum34 # EPEL6 %if ( 0%{?rhel} && 0%{?rhel} == 6 ) @@ -49,6 +50,7 @@ Requires: python-arrow Requires: python-blinker Requires: python-chardet Requires: python-docutils +Requires: python-enum34 Requires: python-flask Requires: python-flask-wtf Requires: python-markdown @@ -165,6 +167,14 @@ install -m 644 milters/comment_email_milter.py \ %changelog +* Fri May 29 2015 Pierre-Yves Chibon - 0.1.9-1 +- Update to 0.1.9 +- Initial API work +- Document the initial API +- Fix the CSS to present the links correctly +- Add new API endpoint to list the git tags of a project +- Ensure the DB is updated regarding the start and stop commits before merging + * Wed May 27 2015 Pierre-Yves Chibon - 0.1.8-1 - Update 0.1.8 - Add the possibility to do Asynchronous in-line comment posting diff --git a/pagure/__init__.py b/pagure/__init__.py index 7f00dbe..8e4f3f8 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.8' +__version__ = '0.1.9' __api_version__ = '0.1'