summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-15 14:56:20 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-15 15:14:04 +0200
commit9f51eeb2f9a1efe22e45f7a1f7b963100f2f8e6b (patch)
tree75a37c9d1ab697780e4d657119d0f98227d33090 /CHANGES
parent9ce1193c851e98293a237ad3d2d87725c501e89f (diff)
downloadgitpython-9f51eeb2f9a1efe22e45f7a1f7b963100f2f8e6b.tar.gz
repo: removed commits_between but added a note about how this can be achieved using the iter_commits method; reorganized methods within the type as a start for more interface changes
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 83156ecf..f2056ea1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -53,11 +53,12 @@ Repo
- '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_between', replaced by a note on the iter_commits method as it can
+ achieve the same thing
* Renamed commits to iter_commits to improve the performance, adjusted signature
to be more versatile
* 'commits' method has no max-count of returned commits anymore, it now behaves
like git-rev-list
-
Diff
----