From 9c13be8dec39c60460182d1632324999333f3769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Thu, 3 Oct 2013 20:35:58 +0200 Subject: [PATCH] Release 0.19.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit API changes: - Rename Commit._message to Commit.raw_message - Rename Signature._name to Signature.raw_name - Rename Signature._email to Signature.raw_email New features: - Remote.push(refspec) - Tag.get_object() And some bugs fixed. Thanks to Brodie Rao, Fraser Tweedale, Andrew Chin and Carlos Martín Nieto. --- .mailmap | 5 +++-- README.rst | 4 +++- docs/conf.py | 2 +- pygit2/version.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.mailmap b/.mailmap index da003e2..5c3799b 100644 --- a/.mailmap +++ b/.mailmap @@ -1,6 +1,7 @@ +Carlos Martín Nieto +Christian Boos J. David Ibáñez +Martin Lenders Richo Healey Xavier Delannoy -Christian Boos -Martin Lenders Xu Tao diff --git a/README.rst b/README.rst index a64219b..3b2d6e5 100644 --- a/README.rst +++ b/README.rst @@ -63,10 +63,12 @@ This is the list of authors of pygit2, sorted by number of commits (as shown by - Valentin Haenel - Bernardo Heynemann - John Szakmeister +- Brodie Rao - David Versmisse - Petr Hosek - Rémi Duraffort - Sebastian Thiel +- Fraser Tweedale - Han-Wen Nienhuys - Petr Viktorin - Alex Chamberlain @@ -79,6 +81,7 @@ This is the list of authors of pygit2, sorted by number of commits (as shown by - Sarath Lakshman - Vicent Marti - Zoran Zaric +- Andrew Chin - András Veres-Szentkirályi - Benjamin Kircher - Benjamin Pollack @@ -89,7 +92,6 @@ This is the list of authors of pygit2, sorted by number of commits (as shown by - Eric Schrijver - Erik van Zijst - Ferengee -- Fraser Tweedale - Hugh Cole-Baker - Josh Bleecher Snyder - Jun Omae diff --git a/docs/conf.py b/docs/conf.py index bb653d7..4ec29bc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2013, J. David Ibáñez' # The short X.Y version. version = '0.19' # The full version, including alpha/beta/rc tags. -release = '0.19.0' +release = '0.19.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pygit2/version.py b/pygit2/version.py index 3ac321c..8fe724b 100644 --- a/pygit2/version.py +++ b/pygit2/version.py @@ -23,4 +23,4 @@ # the Free Software Foundation, 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. -__version__ = '0.19.0' +__version__ = '0.19.1'