From 27cf9902ed0e387513c120a1eb83e791114f83e6 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 12 2015 12:10:49 +0000 Subject: Release 0.1.28 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index 5582534..bfd03d3 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,12 +3,12 @@ Contributors to pagure Pagure would be nothing without its contributors. -On October 5, 2015 (release 0.1.27), the list looks as follow: +On October 12, 2015 (release 0.1.28), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3159 Pierre-Yves Chibon + 3173 Pierre-Yves Chibon 59 Johan Cwiklinski 13 Ghost-script 13 Mathieu Bridon @@ -17,6 +17,7 @@ Number of commits Contributor 8 Ralph Bean 6 Patrick Uiterwijk 5 yangl1996 + 4 Maciej Lasyk 3 Dhriti Shikhar 3 Kushal Khandelwal 2 Ricky Elrod diff --git a/files/pagure.spec b/files/pagure.spec index 72902fd..cdec8f3 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.27 +Version: 0.1.28 Release: 1%{?dist} Summary: A git-centered forge @@ -212,6 +212,17 @@ install -m 644 ev-server/pagure_ev.service \ %changelog +* Mon Oct 12 2015 Pierre-Yves Chibon - 0.1.28-1 +- Update to 0.1.28 +- Fix the call to noJS() in the pull-request template to avoid crashing +- Improve the runserver script in the sources +- Fix the projects pagination on the index page +- Create the git-daemon-export-ok file upon creating a new project/git +- Use first line of commit message for PR title when only one commit (Maciej + Lasyk) +- Show the tag message near the tag in the release page +- Set the default_email when creating a local user account + * Mon Oct 05 2015 Pierre-Yves Chibon - 0.1.27-1 - Update to 0.1.27 - Skip writing empty ssh keys on disc diff --git a/pagure/__init__.py b/pagure/__init__.py index b67481c..8eed220 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.27' +__version__ = '0.1.28' __api_version__ = '0.6'