Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:59:39

0001 /*
0002  * Copyright (C) the libgit2 contributors. All rights reserved.
0003  *
0004  * This file is part of libgit2, distributed under the GNU GPL v2 with
0005  * a Linking Exception. For full terms see the included COPYING file.
0006  */
0007 #ifndef INCLUDE_git_version_h__
0008 #define INCLUDE_git_version_h__
0009 
0010 /**
0011  * The version string for libgit2.  This string follows semantic
0012  * versioning (v2) guidelines.
0013  */
0014 #define LIBGIT2_VERSION        "1.8.0"
0015 
0016 /** The major version number for this version of libgit2. */
0017 #define LIBGIT2_VER_MAJOR      1
0018 
0019 /** The minor version number for this version of libgit2. */
0020 #define LIBGIT2_VER_MINOR      8
0021 
0022 /** The revision ("teeny") version number for this version of libgit2. */
0023 #define LIBGIT2_VER_REVISION   0
0024 
0025 /** The Windows DLL patch number for this version of libgit2. */
0026 #define LIBGIT2_VER_PATCH      0
0027 
0028 /**
0029  * The prerelease string for this version of libgit2.  For development
0030  * (nightly) builds, this will be "alpha".  For prereleases, this will be
0031  * a prerelease name like "beta" or "rc1".  For final releases, this will
0032  * be `NULL`.
0033  */
0034 #define LIBGIT2_VER_PRERELEASE NULL
0035 
0036 /**
0037  * The library ABI soversion for this version of libgit2. This should
0038  * only be changed when the library has a breaking ABI change, and so
0039  * may trail the library's version number.
0040  */
0041 #define LIBGIT2_SOVERSION      "1.8"
0042 
0043 #endif