summaryrefslogtreecommitdiff
path: root/include/git2/version.h
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-10-12 11:03:58 -0700
committerVicent Martí <tanoku@gmail.com>2011-10-12 11:03:58 -0700
commit92e2081f40d9373e663d362663b51ae943c8801b (patch)
treea1e180e2ed7cd396ede36d4566f944701501f16e /include/git2/version.h
parentbff5f4e396bd40fd0c0d581f312f050f91a7408b (diff)
parentcf9bf6b7875357eb8059a4957c1d649bb9ff7e3c (diff)
downloadlibgit2-92e2081f40d9373e663d362663b51ae943c8801b.tar.gz
Merge pull request #449 from csware/include-win-version-information
Include windows version information in git2.dll
Diffstat (limited to 'include/git2/version.h')
-rw-r--r--include/git2/version.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/git2/version.h b/include/git2/version.h
new file mode 100644
index 000000000..cb8b386d6
--- /dev/null
+++ b/include/git2/version.h
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 2009-2011 the libgit2 contributors
+ *
+ * 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.15.0"
+#define LIBGIT2_VER_MAJOR 0
+#define LIBGIT2_VER_MINOR 15
+#define LIBGIT2_VER_REVISION 0
+
+#endif