diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2015-04-26 02:49:12 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2018-03-22 16:23:20 +0100 |
commit | b31cd43e7edc43c880e209d8ea6e942cf40e7002 (patch) | |
tree | a646e2cc65db63ce459483e60ab319cc9be7c028 | |
parent | c3d0633800bb6edcd88f4a042dbeffd235253eeb (diff) | |
download | libgit2-b31cd43e7edc43c880e209d8ea6e942cf40e7002.tar.gz |
Update CHANGELOG with the commit function changes
-rw-r--r-- | CHANGELOG.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ba0cb4ea8..291c58889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,19 @@ v0.27 + 1 ### API additions +* `git_commit_create_on()` takes on the role which + `git_commit_create()` had when provided a reference name to + update. `git_commit_create_on_head()` always updates the current + branch. + +* `git_commit_create_fromstate()` is a variant of the commit creation + function which behaves closer to `git-commit` by taking the parents + and tree from the current branch and the index. + ### API removals +* `git_commit_create()` has been renamed to `git_commit_create_on()`. + ### Breaking API changes v0.27 |