From c21c573709ffc365fbf731aab958c79bcafe0c8c Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 04 2016 21:19:31 +0000 Subject: Release 1.0.2 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 2f757c6..205b98b 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,13 +3,13 @@ Contributors to pagure Pagure would be nothing without its contributors. -On February 1, 2016 (release 1.0.1), the list looks as follow: +On February 4, 2016 (release 1.0.2), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3618 Pierre-Yves Chibon - 94 Ryan Lerch + 3628 Pierre-Yves Chibon + 104 Ryan Lerch 59 Johan Cwiklinski 50 farhaanbukhsh 16 Sayan Chowdhury @@ -17,6 +17,7 @@ Number of commits Contributor 13 Ghost-script 13 Mathieu Bridon 12 Patrick Uiterwijk + 8 Clement Verna 8 Lei Yang 6 Vivek Anand 5 Gaurav Kumar @@ -24,13 +25,13 @@ Number of commits Contributor 4 Maciej Lasyk 3 Dhriti Shikhar 3 Kushal Khandelwal - 2 Clement Verna 2 Daniel Mach 2 Lubomír Sedlář 2 Ricky Elrod 2 Simo Sorce 2 Till Maas 2 dhrish20 + 2 vanzhiganov 1 David Caro 1 Jan Pokorný 1 Kunaal Jain diff --git a/files/pagure.spec b/files/pagure.spec index 3d7d53f..b726a7a 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.0.1 +Version: 1.0.2 Release: 1%{?dist} Summary: A git-centered forge @@ -249,6 +249,20 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Thu Feb 04 2016 Pierre-Yves Chibon - 1.0.2-1 +- Update to 1.0.2 +- Rework the PR page (Ryan Lerch) +- Add ssh_info to blacklist in default config (Ryan Lerch) +- Restyle the ssh_info page (Ryan Lerch) +- Fix hiding the preview pane when creating an issue (Ryan Lerch) +- Indicate the number of comments on the PR when listing them (Ryan Lerch) +- Fix showing the links to issues when previewing a comment +- Ensure some more that the page number isn't below 1 +- Do not show the edit and delete buttons to everyone when adding a comment via + SSE +- Update the requirements.txt for a missing dependency on Ubuntu (vanzhiganov) +- Improving sorting the release tags in the release page (Clement Verna) + * Mon Feb 01 2016 Pierre-Yves Chibon - 1.0.1-1 - Update to 1.0.1 - Improve the fork list (Ryan Lerch) diff --git a/pagure/__init__.py b/pagure/__init__.py index 91c9cd5..38a2797 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.0.1' +__version__ = '1.0.2' __api_version__ = '0.6'