Skip to content

Commit ae74d5a

Browse files
committed
meta: update version number to v1.5.0-alpha
Update the version number in main to v1.5.0-alpha. This helps people understand that the main builds are not part of the v1.4.0 release train. We use "alpha" to indicate builds out of main (or nightlies) as semver v2 requires the prerelease component is compared lexicographically. Thus, our "beta" and "rc" releases should follow.
1 parent c845056 commit ae74d5a

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required(VERSION 3.5.1)
55

6-
project(libgit2 VERSION "1.4.0" LANGUAGES C)
6+
project(libgit2 VERSION "1.5.0" LANGUAGES C)
77

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

include/git2/version.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
#ifndef INCLUDE_git_version_h__
88
#define INCLUDE_git_version_h__
99

10-
#define LIBGIT2_VERSION "1.4.0"
11-
#define LIBGIT2_VER_MAJOR 1
12-
#define LIBGIT2_VER_MINOR 4
13-
#define LIBGIT2_VER_REVISION 0
14-
#define LIBGIT2_VER_PATCH 0
10+
#define LIBGIT2_VERSION "1.5.0-alpha"
11+
#define LIBGIT2_VER_MAJOR 1
12+
#define LIBGIT2_VER_MINOR 5
13+
#define LIBGIT2_VER_REVISION 0
14+
#define LIBGIT2_VER_PATCH 0
15+
#define LIBGIT2_VER_PRERELEASE "alpha"
1516

16-
#define LIBGIT2_SOVERSION "1.4"
17+
#define LIBGIT2_SOVERSION "1.5"
1718

1819
#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.4.0",
3+
"version": "1.5.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)