]> git.proxmox.com Git - libgit2.git/blob - include/git2/version.h
New upstream version 1.5.0+ds
[libgit2.git] / include / git2 / version.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7 #ifndef INCLUDE_git_version_h__
8 #define INCLUDE_git_version_h__
9
10 /**
11 * The version string for libgit2. This string follows semantic
12 * versioning (v2) guidelines.
13 */
14 #define LIBGIT2_VERSION "1.5.0"
15
16 /** The major version number for this version of libgit2. */
17 #define LIBGIT2_VER_MAJOR 1
18
19 /** The minor version number for this version of libgit2. */
20 #define LIBGIT2_VER_MINOR 5
21
22 /** The revision ("teeny") version number for this version of libgit2. */
23 #define LIBGIT2_VER_REVISION 0
24
25 /** The Windows DLL patch number for this version of libgit2. */
26 #define LIBGIT2_VER_PATCH 0
27
28 /**
29 * The prerelease string for this version of libgit2. For development
30 * (nightly) builds, this will be "alpha". For prereleases, this will be
31 * a prerelease name like "beta" or "rc1". For final releases, this will
32 * be `NULL`.
33 */
34 #define LIBGIT2_VER_PRERELEASE NULL
35
36 /** The library ABI soversion for this version of libgit2. */
37 #define LIBGIT2_SOVERSION "1.5"
38
39 #endif