mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-05 10:52:22 +00:00
wildcard filters: move CHANGELOG message to 0.23+1
This commit is contained in:
parent
bae467aec4
commit
9a99ca7b21
@ -3,6 +3,10 @@ v0.23 + 1
|
|||||||
|
|
||||||
### Changes or improvements
|
### Changes or improvements
|
||||||
|
|
||||||
|
* Custom filters can now be registered with wildcard attributes, for
|
||||||
|
example `filter=*`. Consumers should examine the attributes parameter
|
||||||
|
of the `check` function for details.
|
||||||
|
|
||||||
### API additions
|
### API additions
|
||||||
|
|
||||||
### API removals
|
### API removals
|
||||||
@ -88,10 +92,6 @@ v0.23
|
|||||||
* If libcurl is installed, we will use it to connect to HTTP(S)
|
* If libcurl is installed, we will use it to connect to HTTP(S)
|
||||||
servers.
|
servers.
|
||||||
|
|
||||||
* Custom filters can now be registered with wildcard attributes, for
|
|
||||||
example `filter=*`. Consumers should examine the attributes parameter
|
|
||||||
of the `check` function for details.
|
|
||||||
|
|
||||||
### API additions
|
### API additions
|
||||||
|
|
||||||
* The `git_merge_options` gained a `file_flags` member.
|
* The `git_merge_options` gained a `file_flags` member.
|
||||||
|
@ -98,7 +98,6 @@ static void wildcard_filter_cleanup(git_filter *self, void *payload)
|
|||||||
{
|
{
|
||||||
GIT_UNUSED(self);
|
GIT_UNUSED(self);
|
||||||
git__free(payload);
|
git__free(payload);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void wildcard_filter_free(git_filter *f)
|
static void wildcard_filter_free(git_filter *f)
|
||||||
@ -106,7 +105,7 @@ static void wildcard_filter_free(git_filter *f)
|
|||||||
git__free(f);
|
git__free(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
static git_filter *create_wildcard_filter()
|
static git_filter *create_wildcard_filter(void)
|
||||||
{
|
{
|
||||||
git_filter *filter = git__calloc(1, sizeof(git_filter));
|
git_filter *filter = git__calloc(1, sizeof(git_filter));
|
||||||
cl_assert(filter);
|
cl_assert(filter);
|
||||||
|
Loading…
Reference in New Issue
Block a user