8000 Merge pull request #6596 from libgit2/ethomson/update_version_numbers · libgit2/libgit2@136e55f · GitHub
[go: up one dir, main page]

Skip to content

Commit 136e55f

Browse files
authored
Merge pull request #6596 from libgit2/ethomson/update_version_numbers
meta: update version numbers to v1.8
2 parents 3e2baa6 + 6249855 commit 136e55f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
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.7.0" LANGUAGES C)
9+
project(libgit2 VERSION "1.8.0" LANGUAGES C)
1010

1111
# Add find modules to the path
1212
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")

include/git2/version.h

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
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.8.0-alpha"
1515

1616
/** The major version number for this version of libgit2. */
1717
#define LIBGIT2_VER_MAJOR 1
1818

1919
/** The minor version number for this version of libgit2. */
20-
#define LIBGIT2_VER_MINOR 7
20+
#define LIBGIT2_VER_MINOR 8
2121

2222
/** The revision ("teeny") version number for this version of libgit2. */
2323
#define LIBGIT2_VER_REVISION 0
@@ -31,9 +31,13 @@
3131
* a prerelease name like "beta" or "rc1". For final releases, this will
3232
* be `NULL`.
3333
*/
34-
#define LIBGIT2_VER_PRERELEASE NULL
34+
#define LIBGIT2_VER_PRERELEASE "alpha"
3535

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+
*/
3741
#define LIBGIT2_SOVERSION "1.7"
3842

3943
#endif

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.7.0",
3+
"version": "1.8.0-alpha",
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