File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed
Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 66
77cmake_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
1212set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR} /cmake" )
Original file line number Diff line number Diff line change 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+
115v1.9.1
216------
317
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 ."
You can’t perform that action at this time.
0 commit comments