From f2d4afe3bc2f5844cec0a641b7a456203c8adf74 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 01 2016 12:15:24 +0000 Subject: Release 1.0.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 12ae6fc..2f757c6 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,27 +3,28 @@ Contributors to pagure Pagure would be nothing without its contributors. -On January 27, 2016 (release 1.0), the list looks as follow: +On February 1, 2016 (release 1.0.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3597 Pierre-Yves Chibon - 85 Ryan Lerch + 3618 Pierre-Yves Chibon + 94 Ryan Lerch 59 Johan Cwiklinski - 47 farhaanbukhsh + 50 farhaanbukhsh + 16 Sayan Chowdhury 14 Ralph Bean - 14 Sayan Chowdhury 13 Ghost-script 13 Mathieu Bridon 12 Patrick Uiterwijk 8 Lei Yang + 6 Vivek Anand 5 Gaurav Kumar 5 yangl1996 4 Maciej Lasyk - 4 Vivek Anand 3 Dhriti Shikhar 3 Kushal Khandelwal + 2 Clement Verna 2 Daniel Mach 2 Lubomír Sedlář 2 Ricky Elrod @@ -34,6 +35,7 @@ Number of commits Contributor 1 Jan Pokorný 1 Kunaal Jain 1 Paul W. Frields + 1 Pierre-YvesChibon 1 Rahul Bajaj 1 Stanislav Ochotnicky 1 Yves Martin diff --git a/files/pagure.spec b/files/pagure.spec index 0e87181..3d7d53f 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 +Version: 1.0.1 Release: 1%{?dist} Summary: A git-centered forge @@ -249,6 +249,28 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Mon Feb 01 2016 Pierre-Yves Chibon - 1.0.1-1 +- Update to 1.0.1 +- Improve the fork list (Ryan Lerch) +- Make sure the images on comments do not exceed the size of the comment + box/area (Ryan Lerch) +- Improve the page listing all issues (Ryan Lerch) +- Include the project information when sending a fedmsg message about editing a + comment +- Allow tags in rst files so that the README shows fine +- Fix linking directly to a specific comment in a PR +- Fix adding comment in a PR via SSE +- Fix updating issue information via SSE +- Fix the reply buttons on the issue page +- Remove the choice for a status when creating a new ticket (Farhaandukhsh) +- Fix deleting a branch from the UI +- Make the cards have rounded corners (Sayan Chowdhury) +- Fix showing the description of form field (Vivek Anand) +- Fix checking if the passwords added are the same (for local accounts) + (Vivek Anand) +- Fix displaying emojis when previewing a comment on a ticket (Clement Verna) +- Add support for emojis when creating a new ticket (Clement Verna) + * Wed Jan 27 2016 Pierre-Yves Chibon - 1.0-1 - Update to 1.0 - Entirely new UI thanks to the hard work on Ryan Lerch diff --git a/pagure/__init__.py b/pagure/__init__.py index ed87824..91c9cd5 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' +__version__ = '1.0.1' __api_version__ = '0.6'