From 1e847afa34fcfff75fe4352e21e0bd6bca80cc75 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 05 2015 12:57:07 +0000 Subject: Release 0.1.21 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 051d60f..e1d0acf 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On July 29, 2015 (release 0.1.20), the list looks as follow: +On August 5, 2015 (release 0.1.21), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2951 Pierre-Yves Chibon + 2981 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury @@ -19,6 +19,7 @@ Number of commits Contributor 3 Kushal Khandelwal 2 Patrick Uiterwijk 2 Simo Sorce + 2 Till Maas 1 Kunaal Jain 1 Stanislav Ochotnicky 1 jcvicelli diff --git a/files/pagure.spec b/files/pagure.spec index f20b105..7caf39c 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.20 +Version: 0.1.21 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,17 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Wed Aug 05 2015 Pierre-Yves Chibon - 0.1.21 +- Update to 0.1.21 +- Make SSH protocol explicit for SSH URLs (Till Maas) +- Adjust the documentation (layout and content) +- Rework the doc server to allow showing html files directly +- Fix installing the pagure hook correctly (tickets and requests) +- Give proper attribution to the pagure logo to Micah Deen in the documentation +- Increase pull request text field lengths to 80 (Till Maas) +- Fix who can open a remote PR and the check that the repo allows PR +- If there is no commit and no content, it means we didn't find the file: 404 + * Wed Jul 29 2015 Pierre-Yves Chibon - 0.1.20 - Update to 0.1.20 - Include the tags in the JSON representation of a project diff --git a/pagure/__init__.py b/pagure/__init__.py index fb81cbf..49d9793 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.20' +__version__ = '0.1.21' __api_version__ = '0.5'