From e7e6ed2f5cda3175fdc28f247f28d82af60dee2f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 30 2015 15:12:39 +0000 Subject: Release 0.1.34 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 02fd526..5171805 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On November 20, 2015 (release 0.1.33), the list looks as follow: +On November 30, 2015 (release 0.1.34), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3212 Pierre-Yves Chibon + 3255 Pierre-Yves Chibon 59 Johan Cwiklinski 14 Ralph Bean 14 Sayan Chowdhury diff --git a/files/pagure.spec b/files/pagure.spec index 53da8e5..1b9b3cc 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.33 +Version: 0.1.34 Release: 1%{?dist} Summary: A git-centered forge @@ -124,7 +124,7 @@ Requires: python-trollius-redis Requires(post): systemd Requires(preun): systemd Requires(postun): systemd -%description ev +%description webhook Pagure comes with an webhook server allowing http callbacks for any action done on a project. This package provides it. @@ -245,6 +245,21 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Nov 30 2015 Pierre-Yves Chibon - 0.1.34-1 +- Update to 0.1.34 +- Fix the encoding of the files we're displaying on the UI +- Fix commenting on the last line of a diff +- Fix returning error message from the internal API (shows the PR as conflicting + then) +- Fix stacktrace encountered in some repo if the content of a folder is empty + (or is a git submodule) +- Split the web-hooks into their own server +- If you try to fork a forked project, redirect the user to the fork +- Show the repo from and repo to when opening a new PR +- Add the pagination links at the bottom of the repo list as well +- Add the groups to the pool of users to notify upon changes to a project +- Hide private repo from user who do not have commit access + * Fri Nov 20 2015 Pierre-Yves Chibon - 0.1.33-1 - Update to 0.1.33 - Prevent project with a name starting with a non-alphanumerical character diff --git a/pagure/__init__.py b/pagure/__init__.py index d6b50e5..6c15b80 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.33' +__version__ = '0.1.34' __api_version__ = '0.6'