summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-15 12:09:16 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-15 12:09:29 +0200
commit2da2b90e6930023ec5739ae0b714bbdb30874583 (patch)
tree506303c27732783c4a06cfd4fe8cf62d63bd42e7 /CHANGES
parent58d692e2a1d7e3894dbed68efbcf7166d6ec3fb7 (diff)
downloadgitpython-2da2b90e6930023ec5739ae0b714bbdb30874583.tar.gz
repo: removed a few methods because of redundancy or because it will be obsolete once the interface overhaul is finished. This commit is just intermediate
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 456423d4..04d9b4c9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -44,9 +44,13 @@ Repo
of the active branch.
* tree method now requires a Ref instance as input and defaults to the active_branche
instead of master
-* Removed 'log' method as it as effectively the same as the 'commits' method
+* Removed the following methods:
+ - 'log' method as it as effectively the same as the 'commits' method
+ - 'commits_since' as it is just a flag given to rev-list in Commit.iter_items
+ - 'commit_count' as it was just a redirection to the respective commit method
* 'commits' method has no max-count of returned commits anymore, it now behaves
like git-rev-list
+
Diff
----