From b945b9d14af31e495bf77221b9cd213008f13cf1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 13 2016 06:00:34 +0000 Subject: Release 2.1 --- diff --git a/UPGRADING.rst b/UPGRADING.rst index 3fd2de4..10f27a8 100644 --- a/UPGRADING.rst +++ b/UPGRADING.rst @@ -1,6 +1,17 @@ Upgrading Pagure ================ +From 2.0 to 2.1 +--------------- + +2.1 brings its usual flow of improvements and bug fixes. + +When upgrading from 2.0.x to 2.1 all you will have to: + +* Update the database schame using alembic: ``alembic upgrade head`` + + + From 1.x to 2.0 --------------- diff --git a/doc/contributors.rst b/doc/contributors.rst index 7354ecc..0ebe5bf 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -3,34 +3,37 @@ Contributors to pagure Pagure would be nothing without its contributors. -On April 24, 2016 (release 2.0.1), the list looks as follow: +On May 12, 2016 (release 2.1), the list looks as follow: ================= =========== Number of commits Contributor ================= =========== - 3923 Pierre-Yves Chibon - 148 Ryan Lerch + 3979 Pierre-Yves Chibon + 154 Ryan Lerch + 61 farhaanbukhsh 59 Johan Cwiklinski - 55 farhaanbukhsh - 22 Clement Verna + 40 Clement Verna 18 Sayan Chowdhury 15 Ralph Bean 14 Patrick Uiterwijk 13 Ghost-script 13 Mathieu Bridon - 10 Lubomír Sedlář + 11 Lubomír Sedlář 8 Lei Yang 7 Vivek Anand 5 Gaurav Kumar + 5 Mike McLean 5 yangl1996 4 Maciej Lasyk 4 Paul W. Frields 3 Anthony Lackey 3 Dhriti Shikhar + 3 Jan Pokorný 3 Kushal Khandelwal 3 Oliver Gutierrez 3 Pedro Lima 2 Daniel Mach + 2 Richard Marko 2 Ricky Elrod 2 Simo Sorce 2 Till Maas @@ -38,7 +41,6 @@ Number of commits Contributor 2 vanzhiganov 1 Anthony Lackey 1 David Caro - 1 Jan Pokorný 1 Kunaal Jain 1 Mathew Robinson 1 Pierre-YvesChibon diff --git a/files/pagure.spec b/files/pagure.spec index f497719..de7d4aa 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.0.1 +Version: 2.1 Release: 1%{?dist} Summary: A git-centered forge @@ -253,6 +253,43 @@ install -m 644 webhook-server/pagure_webhook.service \ %changelog +* Fri May 13 2016 Pierre-Yves Chibon - 2.1-1 +- Update to 2.1 +- Fix the milter to get it working (hotfixed in prod) +- Fix the fedmsg hook so that it works fine (hotfixed in prod) +- Fix the path of one of the internal API endpoint +- Pass client_encoding utf8 when connecting to the DB (Richard Marko) +- Do not use client_encoding if using sqlite (Ryan Lerch) +- Allow project names up to 255 characters (Richard Marko) +- Add a spinner showing we're working on retrieve the PR status on the PR page + (farhaanbukhsh) +- Rework installing and removing git hooks (Clement Verna) +- Rework the summary of the changes on the PR page (Ryan Lerch) +- Improve the description of the priority system (Lubomír Sedlář) +- Fix commit url in the pagure hook (Mike McLean) +- Improve the regex when fixing/relating a commit to a ticket or a PR (Mike + McLean) +- Improve the description of the pagure hook (Mike McLean) +- Fix the priority system to support tickets without priority +- Fix the ordering of the priority in the drop-down list of priorities +- Ensure the drop-down list of priorities defaults to the current priority +- Adjust the runserver.py script to setup PAGURE_CONFIG before importing pagure +- Remove flashed message when creating a new project +- Add markdown support for making of PR# a link to the corresponding PR +- Include the priority in the JSON representation of a ticket +- Include the priorities in the JSON representation of a project +- Do not update the assignee if the person who commented isn't an admin +- When adding a comment fails, include the comment text in the form if there was + one +- Add support to remove a group from a project +- Add a roadmap feature with corresponding documentation +- Allow 'kbd' and 'var' html tags to render properly +- Fix deleting a project on disk as well as in the DB +- Allow setting the date_created field when importing ticket from git (Clement + Verna) +- Strip GPG signature from the release message on the release page (Jan Pokorný) +- Make comment on PR diffs fit the parent, and not overflow horiz (Ryan Lerch) + * Sun Apr 24 2016 Pierre-Yves Chibon - 2.0.1-1 - Update to 2.0.1 - Fixes to the UPGRADING documentation diff --git a/pagure/__init__.py b/pagure/__init__.py index f289436..51eb04c 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.0.1' +__version__ = '2.1' __api_version__ = '0.6'