summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2022-07-07 23:16:21 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2022-07-07 23:16:21 -0400
commitf8d8a0a47193d9670ce5ef0f4263309be169d1e6 (patch)
tree701814eba67ef4926c3f0998de23a7d17d9fc073
parente5ec91c06410c09d8b847c2d032dad3ae0ee1bde (diff)
downloadlibgit2-f8d8a0a47193d9670ce5ef0f4263309be169d1e6.tar.gz
meta: update version number to v1.6.0-alpha
-rw-r--r--CMakeLists.txt2
-rw-r--r--include/git2/version.h6
-rw-r--r--package.json2
3 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2b5a2842c..152010006 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@
cmake_minimum_required(VERSION 3.5.1)
-project(libgit2 VERSION "1.5.0" LANGUAGES C)
+project(libgit2 VERSION "1.6.0" LANGUAGES C)
# Add find modules to the path
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")
diff --git a/include/git2/version.h b/include/git2/version.h
index d591904fd..8f8051441 100644
--- a/include/git2/version.h
+++ b/include/git2/version.h
@@ -11,7 +11,7 @@
* The version string for libgit2. This string follows semantic
* versioning (v2) guidelines.
*/
-#define LIBGIT2_VERSION "1.5.0"
+#define LIBGIT2_VERSION "1.6.0-alpha"
/** The major version number for this version of libgit2. */
#define LIBGIT2_VER_MAJOR 1
@@ -31,9 +31,9 @@
* a prerelease name like "beta" or "rc1". For final releases, this will
* be `NULL`.
*/
-#define LIBGIT2_VER_PRERELEASE NULL
+#define LIBGIT2_VER_PRERELEASE "alpha"
/** The library ABI soversion for this version of libgit2. */
-#define LIBGIT2_SOVERSION "1.5"
+#define LIBGIT2_SOVERSION "1.6"
#endif
diff --git a/package.json b/package.json
index 8676fe513..8ef46d761 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "libgit2",
- "version": "1.5.0",
+ "version": "1.6.0-alpha",
"repo": "https://github.com/libgit2/libgit2",
"description": " A cross-platform, linkable library implementation of Git that you can use in your application.",
"install": "mkdir build && cd build && cmake .. && cmake --build ."