Skip to content

Commit ca22574

Browse files
committed
v1.9.2: update changelog and version numbers
1 parent 1b07eec commit ca22574

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-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.9.1" LANGUAGES C)
9+
project(libgit2 VERSION "1.9.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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
v1.9.2
2+
------
3+
4+
This is a security release with multiple changes.
5+
6+
* A bug in the external SSH execution is fixed that could cause
7+
arbitrary command execution. Remote repository names were improperly
8+
sent to the shell without quoting. Arguments to the external SSH
9+
command are now sent parameterized.
10+
11+
* A bug in SSH credential creation is fixed that could cause a
12+
buffer overflow. Public keys that are not NUL terminated were
13+
improperly zeroed. The given length of public keys is now honored.
14+
115
v1.9.1
216
------
317

include/git2/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ GIT_BEGIN_DECL
2121
* The version string for libgit2. This string follows semantic
2222
* versioning (v2) guidelines.
2323
*/
24-
#define LIBGIT2_VERSION "1.9.1"
24+
#define LIBGIT2_VERSION "1.9.2"
2525

2626
/** The major version number for this version of libgit2. */
2727
#define LIBGIT2_VERSION_MAJOR 1
@@ -30,7 +30,7 @@ GIT_BEGIN_DECL
3030
#define LIBGIT2_VERSION_MINOR 9
3131

3232
/** The revision ("teeny") version number for this version of libgit2. */
33-
#define LIBGIT2_VERSION_REVISION 1
33+
#define LIBGIT2_VERSION_REVISION 2
3434

3535
/** The Windows DLL patch number for this version of libgit2. */
3636
#define LIBGIT2_VERSION_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.9.1",
3+
"version": "1.9.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)