Skip to content

Commit 4ce872a

Browse files
authored
Merge pull request libgit2#6830 from libgit2/ethomson/v1.8.2
libgit2 v1.8.2
2 parents 4516ca1 + e9d56b0 commit 4ce872a

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

CMakeLists.txt

+1-1
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.8.1" LANGUAGES C)
9+
project(libgit2 VERSION "1.8.2" 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

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
v1.8.2
2+
------
3+
4+
This release reverts a const-correctness change introduced in
5+
v1.8.0 for the `git_commit_create` functions. We now retain the
6+
const-behavior for the `commits` arguments from prior to v1.8.0.
7+
8+
This change was meant to resolve compatibility issues with bindings
9+
and downstream users.
10+
11+
## What's Changed
12+
13+
### New features
14+
15+
* Introduce a stricter debugging allocator for testing by @ethomson in https://github.com/libgit2/libgit2/pull/6811
16+
17+
### Bug fixes
18+
19+
* Fix constness issue introduced in #6716 by @ethomson in https://github.com/libgit2/libgit2/pull/6829
20+
21+
### Build and CI improvements
22+
23+
* README: add experimental builds to ci table by @ethomson in https://github.com/libgit2/libgit2/pull/6816
24+
25+
**Full Changelog**: https://github.com/libgit2/libgit2/compare/v1.8.1...v1.8.2
26+
127
v1.8.1
228
------
329

include/git2/version.h

+2-2
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.8.1"
14+
#define LIBGIT2_VERSION "1.8.2"
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 8
2121

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

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libgit2",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
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)