From 0a7882b3f21fca1afb23f976e4329f04177032d7 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 01 2016 11:27:43 +0000 Subject: Release 1.2 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 5cf90e3..a42207f 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,16 +3,16 @@ Contributors to pagure Pagure would be nothing without its contributors. -On February 24, 2016 (release 1.1.1), the list looks as follow: +On March 1, 2016 (release 1.2), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3736 Pierre-Yves Chibon - 113 Ryan Lerch + 3741 Pierre-Yves Chibon + 121 Ryan Lerch 59 Johan Cwiklinski - 50 farhaanbukhsh - 16 Clement Verna + 54 farhaanbukhsh + 22 Clement Verna 16 Sayan Chowdhury 14 Ralph Bean 13 Ghost-script diff --git a/files/pagure.spec b/files/pagure.spec index 0ff7120..805b18a 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: 1.1.1 +Version: 1.2 Release: 1%{?dist} Summary: A git-centered forge @@ -253,6 +253,23 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Tue Mar 01 2016 Pierre-Yves Chibon - 1.2-1 +- Update to 1.2 +- Add the possibility to create a comment when opening a pull-request (Clement + Verna) +- Fix creating PR from a fork directly from the page listing all the PR on the + main project (Ryan Lerch) +- Color the label showing the issues' status on the issue page and the page + listing them (Ryan Lerch) +- Add a small padding at the bottom of the blockquote (Ryan Lerch) +- In the list of closed PR, replace the column of the assignee with the date of + closing (Ryan Lerch) +- Drop font awesome since we no longer use it and compress the png of the + current logo (Ryan Lerch) +- Drop the svg of the old logo from the source (Ryan Lerch) +- Add descriptions to the git hooks in the settings page (farhaanbukhsh) +- Fix the pagure git hook + * Wed Feb 24 2016 Pierre-Yves Chibon - 1.1.1-1 - Update to 1.1.1 - Fix showing some files where decoding to UTF-8 was failing diff --git a/pagure/__init__.py b/pagure/__init__.py index f78baf5..b23df05 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '1.1.1' +__version__ = '1.2' __api_version__ = '0.6'