From 92d0cbbf2e9bb6e207205fb974768995ea152d10 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 22 2015 08:05:38 +0000 Subject: Release 0.1.7 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index f821f7e..7c12989 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 20, 2015 (release 0.1.6), the list looks as follow: +On May 22, 2015 (release 0.1.7), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2233 Pierre-Yves Chibon + 2245 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index 57d3fad..130a88f 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.6 +Version: 0.1.7 Release: 1%{?dist} Summary: A git-centered forge @@ -165,6 +165,16 @@ install -m 644 milters/comment_email_milter.py \ %changelog +* Fri May 22 2015 Pierre-Yves Chibon - 0.1.7-1 +- Update to 0.1.7 +- Drop debugging code on the milter and the hooks +- Adjust the search_issues method to support filter for some tags, excluding + some others (for example ?tags=easfix&tags=!0.2) +- Support groups when searching an user's projects (ie: finding the projects an + user has access to via the group their are in) +- Do not load the git repo from the FS when loading an user's page +- Present and document the SSH keys in a dedicated documentation page + * Wed May 20 2015 Pierre-Yves Chibon - 0.1.6-1 - Update to 0.1.6 - Fix sending notification emails to multiple users, avoid sending private into diff --git a/pagure/__init__.py b/pagure/__init__.py index dd72a29..5f623ef 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.6' +__version__ = '0.1.7' __api_version__ = '1'