aboutsummaryrefslogtreecommitdiff
path: root/bpkg
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-25 07:15:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-25 07:16:15 +0200
commite83df84b8d0b73896421b52bead0eaa625d4586d (patch)
tree964e98da120ffa5c0e2afad4daa698e2fae66974 /bpkg
parent0db5f43f88a22a8ef9323ec5b1561be882662350 (diff)
Add version header file
Diffstat (limited to 'bpkg')
-rw-r--r--bpkg/version28
1 files changed, 28 insertions, 0 deletions
diff --git a/bpkg/version b/bpkg/version
new file mode 100644
index 0000000..440ddca
--- /dev/null
+++ b/bpkg/version
@@ -0,0 +1,28 @@
+// file : bpkg/version -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBPKG_VERSION // Note: using the version macro itself.
+
+// Version format is AABBCCDD where
+//
+// AA - major version number
+// BB - minor version number
+// CC - bugfix version number
+// DD - alpha / beta (DD + 50) version number
+//
+// When DD is not 00, 1 is subtracted from AABBCC. For example:
+//
+// Version AABBCCDD
+// 2.0.0 02000000
+// 2.1.0 02010000
+// 2.1.1 02010100
+// 2.2.0.a1 02019901
+// 3.0.0.b2 02999952
+//
+
+// AABBCCDD
+#define LIBBPKG_VERSION 10000
+#define LIBBPKG_VERSION_STR "0.1.0"
+
+#endif // LIBBPKG_VERSION