summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-12-15 20:48:33 -0500
committerMichael Trier <mtrier@gmail.com>2008-12-15 20:48:33 -0500
commit4b43ca7ff72d5f535134241e7c797ddc9c7a3573 (patch)
treee6d5951238b7c58df410daf00144ff97d7e6245e
parent6ba8b8b91907bd087dfe201eb0d5dae2feb54881 (diff)
downloadgitpython-4b43ca7ff72d5f535134241e7c797ddc9c7a3573.tar.gz
Added in Changes documentation for 0.1.6
-rw-r--r--CHANGES32
1 files changed, 32 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 6b4148bd..770dbba7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,38 @@
CHANGES
=======
+0.1.6
+=====
+
+General
+-------
+* Removed ambiguity between paths and treeishs. When calling commands that
+ accept treeish and path arguments and there is a path with the same name as
+ a treeish git cowardly refuses to pick one and asks for the command to use
+ the unambiguous syntax where '--' seperates the treeish from the paths.
+
+* ``Repo.commits``, ``Repo.commits_between``, ``Reop.commits_since``,
+ ``Repo.commit_count``, ``Repo.commit``, ``Commit.count`` and
+ ``Commit.find_all`` all now optionally take a path argument which
+ constrains the lookup by path. This changes the order of the positional
+ arguments in ``Repo.commits`` and ``Repo.commits_since``.
+
+
+Commit
+------
+* ``Commit.message`` now contains the full commit message (rather than just
+ the first line) and a new property ``Commit.summary`` contains the first
+ line of the commit message.
+
+Diff
+----
+* The diff parser is now far faster and also addresses a bug where
+ sometimes b_mode was not set.
+
+* Added support for parsing rename info to the diff parser. Addition of new
+ properties ``Diff.renamed``, ``Diff.rename_from``, and ``Diff.rename_to``.
+
+
0.1.5
=====