File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
cmake_minimum_required (VERSION 3.5.1)
8
8
9
- project (libgit2 VERSION "1.7 .0" LANGUAGES C)
9
+ project (libgit2 VERSION "1.8 .0" LANGUAGES C)
10
10
11
11
# Add find modules to the path
12
12
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR} /cmake" )
Original file line number Diff line number Diff line change 11
11
* The version string for libgit2. This string follows semantic
12
12
* versioning (v2) guidelines.
13
13
*/
14
- #define LIBGIT2_VERSION "1.7.0 "
14
+ #define LIBGIT2_VERSION "1.8.0-alpha "
15
15
16
16
/** The major version number for this version of libgit2. */
17
17
#define LIBGIT2_VER_MAJOR 1
18
18
19
19
/** The minor version number for this version of libgit2. */
20
- #define LIBGIT2_VER_MINOR 7
20
+ #define LIBGIT2_VER_MINOR 8
21
21
22
22
/** The revision ("teeny") version number for this version of libgit2. */
23
23
#define LIBGIT2_VER_REVISION 0
31
31
* a prerelease name like "beta" or "rc1". For final releases, this will
32
32
* be `NULL`.
33
33
*/
34
- #define LIBGIT2_VER_PRERELEASE NULL
34
+ #define LIBGIT2_VER_PRERELEASE "alpha"
35
35
36
- /** The library ABI soversion for this version of libgit2. */
36
+ /**
37
+ * The library ABI soversion for this version of libgit2. This should
38
+ * only be changed when the library has a breaking ABI change, and so
39
+ * may trail the library's version number.
40
+ */
37
41
#define LIBGIT2_SOVERSION "1.7"
38
42
39
43
#endif
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " libgit2" ,
3
- "version" : " 1.7.0 " ,
3
+ "version" : " 1.8.0-alpha " ,
4
4
"repo" : " https://github.com/libgit2/libgit2" ,
5
5
"description" : " A cross-platform, linkable library implementation of Git that you can use in your application." ,
6
6
"install" : " mkdir build && cd build && cmake .. && cmake --build ."
You can’t perform that action at this time.
0 commit comments