summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2022-07-07 23:13:23 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2022-07-13 12:50:01 -0400
commit2be53a5da7022bc7b36f4172fa199f5fcecc3089 (patch)
treef53b5a3652e12a31fd885a6233a574059e863077
parent2030358070662fbe3730fbd577c68747d172fd9a (diff)
downloadlibgit2-2be53a5da7022bc7b36f4172fa199f5fcecc3089.tar.gz
v1.5: update version numbers
-rw-r--r--include/git2/version.h4
-rw-r--r--package.json2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/version.h b/include/git2/version.h
index 84af817e2..d591904fd 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-alpha"
+#define LIBGIT2_VERSION "1.5.0"
/** The major version number for this version of libgit2. */
#define LIBGIT2_VER_MAJOR 1
@@ -31,7 +31,7 @@
* a prerelease name like "beta" or "rc1". For final releases, this will
* be `NULL`.
*/
-#define LIBGIT2_VER_PRERELEASE "alpha"
+#define LIBGIT2_VER_PRERELEASE NULL
/** The library ABI soversion for this version of libgit2. */
#define LIBGIT2_SOVERSION "1.5"
diff --git a/package.json b/package.json
index 139fc3891..8676fe513 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "libgit2",
- "version": "1.5.0-alpha",
+ "version": "1.5.0",
"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 ."