From b95ee3758c4eb44b195758d3e83bc061936c080a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Sun, 2 Feb 2014 23:32:21 +0100 Subject: [PATCH] Preparing release --- README.rst | 56 ++++++++++++++++++++++++++++++++++++++++++++++++---- docs/oid.rst | 2 +- 2 files changed, 53 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 53d69ab..1be1203 100644 --- a/README.rst +++ b/README.rst @@ -82,6 +82,11 @@ Changelog 0.20.2 (2014-02-XX) ------------------- +- Support pypy + `#209 `_ + `#327 `_ + `#333 `_ + - New ``Blob.diff(...)`` and ``Blob.diff_to_buffer(...)`` `#307 `_ @@ -89,31 +94,74 @@ Changelog `#310 `_ - New ``Commit.tree_id`` and ``Commit.parent_ids`` - `#730 `_ + `#73 `_ + `#311 `_ +- New ``Config`` iterator replaces ``Config.foreach`` + `#183 `_ + `#312 `_ - New rich comparison between tree entries -- New ``Config`` iterator replaces ``Config.foreach`` + `#305 `_ + `#313 `_ + - New type ``Refspec`` + `#314 `_ + - New ``Remote.push_url`` + `#315 `_ + +- Now ``path in Tree`` works + `#306 `_ + `#316 `_ + - New ``Remote.add_push`` and ``Remote.add_fetch`` + `#255 `_ + `#318 `_ + - New ``Remote.fetch_refspecs`` replaces ``Remote.get_fetch_refspecs()`` and ``Remote.set_fetch_refspecs(...)`` + `#319 `_ + - New ``Remote.push_refspecs`` replaces ``Remote.get_push_refspecs()`` and ``Remote.set_push_refspecs(...)`` -- Now *path* in ``Tree`` works + `#319 `_ + - New ``str(Oid)`` deprecates ``Oid.hex`` + `#322 `_ + - New ``Object.id`` deprecates ``Object.oid`` + `#322 `_ + - New ``TreeEntry.id`` deprecates ``TreeEntry.oid`` + `#322 `_ + - New ``Remote.progress``, ``Remote.transfer_progress`` and ``Remote.update_tips`` + `#274 `_ + `#324 `_ + - New type ``TransferProgress`` + `#274 `_ + `#324 `_ + - Now possible to create ``IndexEntry(...)`` + `#325 `_ + - Now ``IndexEntry.path``, ``IndexEntry.oid`` and ``IndexEntry.mode`` are writable + `#325 `_ + - Now ``Index.add(...)`` accepts an ``IndexEntry`` too + `#325 `_ + - Now ``Index.write_tree(...)`` is able to write to a different repository -- Support pypy + `#325 `_ + +- Other non user visible changes: + `#331 `_ + and + `#332 `_ 0.20.1 (2013-12-24) diff --git a/docs/oid.rst b/docs/oid.rst index 66adcdb..ff5cad8 100644 --- a/docs/oid.rst +++ b/docs/oid.rst @@ -65,7 +65,7 @@ And the other way around, from an Oid object we can get the hexadecimal and raw forms. You can use the built-in `str()` (or `unicode()` in python 2) to get the hexadecimal representation of the Oid. -.. automethod:: str(pygit2.Oid) +.. method:: str(pygit2.Oid) .. autoattribute:: pygit2.Oid.raw The Oid type supports: