From 72c9017a5cd69617fe2bc4376f9ea1214d194315 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 24 2016 09:34:15 +0000 Subject: Release 2.8.1 --- diff --git a/doc/contributors.rst b/doc/contributors.rst index b405ee0..b046da3 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,16 +3,16 @@ Contributors to pagure Pagure would be nothing without its contributors. -On Oct 21, 2016 (release 2.8), the list looks as follow: +On Oct 24, 2016 (release 2.8.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 4533 Pierre-Yves Chibon + 4538 Pierre-Yves Chibon 189 Ryan Lerch 89 farhaanbukhsh 59 Johan Cwiklinski - 52 Vivek Anand + 53 Vivek Anand 51 Clement Verna 28 Farhaan Bukhsh 22 Patrick Uiterwijk @@ -22,7 +22,7 @@ Number of commits Contributor 15 Ralph Bean 13 Ghost-script 13 Mathieu Bridon - 11 Jeremy Cline + 12 Jeremy Cline 8 Lei Yang 5 Mike McLean 5 Oliver Gutierrez @@ -70,6 +70,7 @@ Number of commits Contributor 1 d3prof3t 1 jcvicelli 1 pingou + 1 rahul Bajaj 1 ryanlerch 1 skrzepto ================= =========== diff --git a/files/pagure.spec b/files/pagure.spec index bb410e0..fb3a27f 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: 2.8 +Version: 2.8.1 Release: 1%{?dist} Summary: A git-centered forge @@ -298,6 +298,16 @@ install -m 644 pagure-ci/pagure_ci.service \ %changelog +* Mon Oct 24 2016 Pierre-Yves Chibon - 2.8.1-1 +- Update to 2.8.1 +- Handle empty files in detect_encodings (Jeremy Cline) +- Fix the import of encoding_utils in the issues controller +- Fix the list of commits page +- Update docs to dnf (Rahul Bajaj) +- Add close status in the repo table if not present when updating/creating issue + via git (Vivek Anand) +- If chardet do not return any result, default to UTF-8 + * Fri Oct 21 2016 Pierre-Yves Chibon - 2.8-1 - Update to 2.8 - Fix the migration adding the close_status field to remove the old status diff --git a/pagure/__init__.py b/pagure/__init__.py index fcc74a8..3bcfd4e 100644 --- a/pagure/__init__.py +++ b/pagure/__init__.py @@ -12,7 +12,7 @@ __requires__ = ['SQLAlchemy >= 0.8', 'jinja2 >= 2.4'] import pkg_resources -__version__ = '2.8' +__version__ = '2.8.1' __api_version__ = '0.8'