From 6fc7e1086d41be00d802765df7c1ae53796cf3e6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jul 29 2015 16:33:50 +0000 Subject: Release 0.1.20 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 0ca7700..d26faf6 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 20, 2015 (release 0.1.19), the list looks as follow: +On July 29, 2015 (release 0.1.20), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2879 Pierre-Yves Chibon + 2951 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon 12 Sayan Chowdhury @@ -21,6 +21,7 @@ Number of commits Contributor 2 Simo Sorce 1 Kunaal Jain 1 Stanislav Ochotnicky + 1 jcvicelli 1 pingou ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index 723c6f6..f20b105 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.19 +Version: 0.1.20 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,22 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* 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 +- Add the ability to open a pull-request from a git repo not hosted on pagure +- Fix pagination when browsing the list of commits +- Fix the fork button when viewing the Settings of a project +- Adjust the example apache configuration file +- Add a favicon with pagure's logo +- Fix asynchronous commentting on pull-requests +- Start working on some documentation on how to install pagure +- Do no flash messages when a comment is submitted via javascript (ie: async) +- Do not blink the tittle of the page if the page is already on focus +- Retrieve ssh key from FAS and set it up in pagure if none is currently set-up +- Fix anchors for comments on the pull-request pages +- Fix checking the merge status of a PR when user is not logged in + * Mon Jul 20 2015 Pierre-Yves Chibon - 0.1.19-1 - Update to 0.1.19 - Prettify the JSON stored in the git for tickets/requests... (Simo Sorce) diff --git a/pagure/__init__.py b/pagure/__init__.py index b7052ab..fb81cbf 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.19' +__version__ = '0.1.20' __api_version__ = '0.5'