summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-15 14:11:34 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-15 14:46:05 +0200
commit9ce1193c851e98293a237ad3d2d87725c501e89f (patch)
treebdac0e4a917ca3c1b21eb580402a2854fcf33692 /CHANGES
parent2da2b90e6930023ec5739ae0b714bbdb30874583 (diff)
downloadgitpython-9ce1193c851e98293a237ad3d2d87725c501e89f.tar.gz
Added Commit.iter_parents to iterate all parents
Renamed Commit.commits to iter_commits repo: assured proper use of the terms revision ( rev ) and reference ( ref )
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 04d9b4c9..83156ecf 100644
--- a/CHANGES
+++ b/CHANGES
@@ -23,6 +23,11 @@ General
* All dates, like authored_date and committer_date, are stored as seconds since epoc
to consume less memory - they can be converted using time.gmtime in a more suitable
presentation format if needed.
+* Named method parameters changed on a wide scale to unify their use. Now git specific
+ terms are used everywhere, such as "Reference" ( ref ) and "Revision" ( rev ).
+ Prevously multiple terms where used making it harder to know which type was allowed
+ or not.
+
Item Iteration
--------------
@@ -48,6 +53,8 @@ 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
+* 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