From 8b1c32e4e626510909f454448dfd0a4da6b3e624 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 06 2015 09:25:08 +0000 Subject: Release 0.1.1 and adjust documentation accordingly --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 5d1acb5..ab996d2 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,14 +3,15 @@ Contributors to pagure Pagure would be nothing without its contributors. -On May 4, 2015 (release 0.1), the list looks as follow: +On May 6, 2015 (release 0.1.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 2168 Pierre-Yves Chibon + 2179 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Mathieu Bridon + 12 Sayan Chowdhury 8 Ghost-script 8 Ralph Bean 3 Kushal Khandelwal diff --git a/files/pagure.spec b/files/pagure.spec index 5ea51c7..4797403 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 +Version: 0.1.1 Release: 1%{?dist} Summary: A git-centered forge @@ -147,6 +147,20 @@ install -m 644 milters/pagure_milter.service \ %changelog +* Wed May 06 2015 Pierre-Yves Chibon - 0.1.1-1 +- Update to 0.1.1 +- Port to python-munch and list it in the dependencies +- Fix exporting patch when they contain unicode characters or accent +- After creating an issue, user is brought back to the new issue page +- Fix unit-tests +- Stop the pagure hook if the user is deleting a branch (no need to run through + all the commits of that branch) +- Fix the requirements.txt file (Sayan Chowdhury) +- Fix the tree page to show the commit sha on its proper line (Sayan Chowdhury) +- Fix typo in the form of some of the plugin (Sayan Chowdhury) +- Improve the README (Sayan Chowdhury) +- Fix highlighting the commits tab when accessing it (Sayan Chowdhury) + * Mon May 04 2015 Pierre-Yves Chibon - 0.1-1 - First official release: 0.1 diff --git a/pagure/__init__.py b/pagure/__init__.py index 8c45976..55354a0 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' +__version__ = '0.1.1' __api_version__ = '1'