diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | doc/source/whatsnew.rst | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,2 +1,2 @@ Please see the online documentation for the latest changelog: -http://packages.python.org/GitPython/ +https://github.com/gitpython-developers/GitPython/blob/0.3/doc/source/changes.rst diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst index 7a5ef53d..f71d88e6 100644 --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@ -52,7 +52,7 @@ Guided Upgrade ************** This guide should help to make the upgrade as painless as possible, hence it points out where to start, and what to look out for. -* Have a look at the CHANGES log file and read all important changes about 0.3 for an overview. +* Have a look at https://github.com/gitpython-developers/GitPython/blob/0.3/doc/source/changes.rst * Start applying the renames, generally the ``utils`` modules are now called ``util``, ``errors`` is called ``exc``. * Search for occurrences of the ``sha`` property of object instances. A similar value can be obtained through the new ``hexsha`` property. The native sha1 value is the ``binsha`` though. * Search for code which instantiates objects directly. Their initializer now requires a 20 byte binary Sha1, rev-specs cannot be used anymore. For a similar effect, either convert your hexadecimal shas to binary shas beforehand ( ``binascii.unhexlify`` for instance ), or use higher level functions such as ``Object.new``, ``Repo.commit`` or ``Repo.tree``. The latter ones takes rev-specs and hexadecimal sha1 hashes. |