Skip to content

Commit bd69280

Browse files
authored
Merge pull request libgit2#4262 from libgit2/ethomson/bump-v26
Update version number to 0.26
2 parents 29ef7d3 + 2a3cc40 commit bd69280

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
v0.25 + 1
2-
-------
1+
v0.26 + 1
2+
---------
3+
4+
### Changes or improvements
5+
6+
### API additions
7+
8+
### API removals
9+
10+
### Breaking API changes
11+
12+
v0.26
13+
-----
314

415
### Changes or improvements
516

@@ -24,12 +35,17 @@ v0.25 + 1
2435
* We now optionally call `fsync` on loose objects, packfiles and their indexes,
2536
loose references and packed reference files.
2637

27-
* We can now build against OpenSSL v1.1.
38+
* We can now build against OpenSSL v1.1 and against LibreSSL.
2839

2940
* `GIT_MERGE_OPTIONS_INIT` now includes a setting to perform rename detection.
3041
This aligns this structure with the default by `git_merge` and
3142
`git_merge_trees` when `NULL` was provided for the options.
3243

44+
* Improvements for reading index v4 files.
45+
46+
* Perform additional retries for filesystem operations on Windows when files
47+
are temporarily locked by other processes.
48+
3349
### API additions
3450

3551
* New family of functions to handle worktrees:
@@ -80,8 +96,6 @@ v0.25 + 1
8096
* `git_transport_smart_proxy_options()' enables you to get the proxy options for
8197
smart transports.
8298

83-
### API removals
84-
8599
### Breaking API changes
86100

87101
* `clone_checkout_strategy` has been removed from

include/git2/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
#ifndef INCLUDE_git_version_h__
88
#define INCLUDE_git_version_h__
99

10-
#define LIBGIT2_VERSION "0.25.0"
10+
#define LIBGIT2_VERSION "0.26.0"
1111
#define LIBGIT2_VER_MAJOR 0
12-
#define LIBGIT2_VER_MINOR 25
12+
#define LIBGIT2_VER_MINOR 26
1313
#define LIBGIT2_VER_REVISION 0
1414
#define LIBGIT2_VER_PATCH 0
1515

16-
#define LIBGIT2_SOVERSION 25
16+
#define LIBGIT2_SOVERSION 26
1717

1818
#endif

0 commit comments

Comments
 (0)