8000 Merge pull request #6622 from libgit2/ethomson/v1.7.1 · libgit2/libgit2@a2bde63 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2bde63

Browse files
authored
Merge pull request #6622 from libgit2/ethomson/v1.7.1
libgit2 v1.7.1
2 parents e577da9 + 81a9edd commit a2bde63

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-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.7.0" LANGUAGES C)
9+
project(libgit2 VERSION "1.7.1" 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

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
v1.7.1
2+
------
3+
4+
## What's Changed
5+
6+
### Bug fixes
7+
8+
* proxy: Return an error for invalid proxy URLs instead of crashing. by @lrm29 in https://github.com/libgit2/libgit2/pull/6597
9+
* ssh: fix known_hosts leak in _git_ssh_setup_conn by @steven9724 in https://github.com/libgit2/libgit2/pull/6599
10+
* repository: make cleanup safe for re-use with grafts by @carlosmn in https://github.com/libgit2/libgit2/pull/6600
11+
* fix: Add missing include for oidarray. by @dvzrv in https://github.com/libgit2/libgit2/pull/6608
12+
* Revert "CMake: Search for ssh2 instead of libssh2." by @ethomson in https://github.com/libgit2/libgit2/pull/6619
13+
14+
### Compatibility improvements
15+
16+
* stransport: macOS: replace errSSLNetworkTimeout, with hard-coded value by @mascguy in https://github.com/libgit2/libgit2/pull/6610
17+
18+
## New Contributors
19+
* @dvzrv made their first contribution in https://github.com/libgit2/libgit2/pull/6608
20+
* @steven9724 made their first contribution in https://github.com/libgit2/libgit2/pull/6599
21+
22+
**Full Changelog**: https://github.com/libgit2/libgit2/compare/v1.7.0...v1.7.1
23+
124
v1.7
225
----
326

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.7.0"
14+
#define LIBGIT2_VERSION "1.7.1"
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 7
2121

2222
/** The revision ("teeny") version number for this version of libgit2. */
23-
#define LIBGIT2_VER_REVISION 0
23+
#define LIBGIT2_VER_REVISION 1
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.7.0",
3+
"version": "1.7.1",
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)
0