summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJameson Miller <jamill@microsoft.com>2015-04-30 10:57:13 -0400
committerJameson Miller <jamill@microsoft.com>2015-04-30 10:59:50 -0400
commitbf2ba5290aad5d058c8a28ec50703bbb977b5bb4 (patch)
tree8594e35f8e569493a300313d1296d631d617fa37
parent891cc5045f613955c6f766f1875a024483b3b972 (diff)
downloadlibgit2-jamill/doc_update.tar.gz
Update documentation for API changesjamill/doc_update
-rw-r--r--CHANGELOG.md2
-rw-r--r--include/git2/merge.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c97a18b50..4067e48f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -67,6 +67,8 @@ support for HTTPS connections insead of OpenSSL.
### Breaking API changes
+* `git_smart_subtransport_cb` now has a `param` parameter.
+
* The `git_merge_options` structure member `flags` has been renamed
to `tree_flags`.
diff --git a/include/git2/merge.h b/include/git2/merge.h
index d3360a7e0..5fef452b9 100644
--- a/include/git2/merge.h
+++ b/include/git2/merge.h
@@ -169,7 +169,7 @@ typedef struct {
/** The file to favor in region conflicts. */
git_merge_file_favor_t favor;
- /** Merge file flags. */
+ /** see `git_merge_file_flags_t` above */
unsigned int flags;
} git_merge_file_options;
@@ -246,6 +246,7 @@ typedef struct {
/** Flags for handling conflicting content. */
git_merge_file_favor_t file_favor;
+ /** see `git_merge_file_flags_t` above */
unsigned int file_flags;
} git_merge_options;