Skip to content

Commit c058aa8

Browse files
authored
Merge pull request libgit2#6534 from libgit2/ethomson/v1.6.3
v1.6.3
2 parents 1b929b3 + a1826a8 commit c058aa8

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
cmake_minimum_required(VERSION 3.5.1)
88

9-
project(libgit2 VERSION "1.6.2" LANGUAGES C)
9+
project(libgit2 VERSION "1.6.3" LANGUAGES C)
1010

1111
# Add find modules to the path
1212
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")

docs/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
v1.6.3
2+
------
3+
4+
## What's Changed
5+
6+
### Bug fixes
7+
8+
* odb: restore `git_odb_open` by @ethomson in https://github.com/libgit2/libgit2/pull/6520
9+
* Ensure that `git_index_add_all` handles ignored directories by @ethomson in https://github.com/libgit2/libgit2/pull/6521
10+
* pack: use 64 bits for the number of objects by @carlosmn in https://github.com/libgit2/libgit2/pull/6530
11+
12+
### Build and CI improvements
13+
14+
* Remove unused wditer variable by @georgthegreat in https://github.com/libgit2/libgit2/pull/6518
15+
* fs_path: let root run the ownership tests by @ethomson in https://github.com/libgit2/libgit2/pull/6513
16+
* sysdir: Do not declare win32 functions on non-win32 platforms by @Batchyx in https://github.com/libgit2/libgit2/pull/6527
17+
* cmake: don't include `include/git2` by @ethomson in https://github.com/libgit2/libgit2/pull/6529
18+
19+
## New Contributors
20+
* @georgthegreat made their first contribution in https://github.com/libgit2/libgit2/pull/6518
21+
22+
**Full Changelog**: https://github.com/libgit2/libgit2/compare/v1.6.2...v1.6.3
23+
124
v1.6.2
225
------
326

include/git2/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* The version string for libgit2. This string follows semantic
1212
* versioning (v2) guidelines.
1313
*/
14-
#define LIBGIT2_VERSION "1.6.2"
14+
#define LIBGIT2_VERSION "1.6.3"
1515

1616
/** The major version number for this version of libgit2. */
1717
#define LIBGIT2_VER_MAJOR 1
@@ -20,7 +20,7 @@
2020
#define LIBGIT2_VER_MINOR 6
2121

2222
/** The revision ("teeny") version number for this version of libgit2. */
23-
#define LIBGIT2_VER_REVISION 2
23+
#define LIBGIT2_VER_REVISION 3
2424

2525
/** The Windows DLL patch number for this version of libgit2. */
2626
#define LIBGIT2_VER_PATCH 0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libgit2",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"repo": "https://github.com/libgit2/libgit2",
55
"description": " A cross-platform, linkable library implementation of Git that you can use in your application.",
66
"install": "mkdir build && cd build && cmake .. && cmake --build ."

0 commit comments

Comments
 (0)