mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 14:12:22 +00:00

Minor point release! We got a lot of rather large features that we wanted to get settled in: - New (threadsafe) cache for objects - Iterator for Status - New Merge APIs - SSH support on *NIX - Function context on diff - Namespaces support - Index add/update/remove with wildcard support - Iterator for References - Fetch and push refspecs for Remotes - Rename support in Status - New 'sys/` namespace for external headers with low-level APIs As always, this comes with hundreds of bug fixes and performance improvements. We're faster and better than ever. And we haven't broken many APIs this time! Build stuff.
16 lines
409 B
C
16 lines
409 B
C
/*
|
|
* Copyright (C) the libgit2 contributors. All rights reserved.
|
|
*
|
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
|
* a Linking Exception. For full terms see the included COPYING file.
|
|
*/
|
|
#ifndef INCLUDE_git_version_h__
|
|
#define INCLUDE_git_version_h__
|
|
|
|
#define LIBGIT2_VERSION "0.19.0"
|
|
#define LIBGIT2_VER_MAJOR 0
|
|
#define LIBGIT2_VER_MINOR 19
|
|
#define LIBGIT2_VER_REVISION 0
|
|
|
|
#endif
|