aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-08 08:57:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-12-08 08:57:24 +0200
commit88ea74114f78b986ed35106141d446f712db673f (patch)
tree9eae24cd2c186745f307dd9a99810e791fe500c9 /build
parent2ad04e317e5ba2b393ffa16a112eb1aec6afbd56 (diff)
Change version back to 0.1.0
The new plan is to use 0.1.0, 0.2.0 rather than 0.1.0-a1, 0.1.0-a2 for early development. Easier on the eye and we have 99 versions instead of 49.
Diffstat (limited to 'build')
-rw-r--r--build/bootstrap.build3
-rw-r--r--build/version13
2 files changed, 9 insertions, 7 deletions
diff --git a/build/bootstrap.build b/build/bootstrap.build
index b71641f..09c9f20 100644
--- a/build/bootstrap.build
+++ b/build/bootstrap.build
@@ -3,9 +3,10 @@
# license : MIT; see accompanying LICENSE file
project = build2
-version = 0.1.0-a1
+version = 0.1.0
subprojects = # No subprojects.
+using build@0.1.0
using config
using dist
using test
diff --git a/build/version b/build/version
index b491f90..6b56926 100644
--- a/build/version
+++ b/build/version
@@ -22,18 +22,19 @@
// 2.2.0-a1 02019901
// 3.0.0-b2 02999952
//
+// AABBCCDD
+#define BUILD_VERSION 10000
+#define BUILD_VERSION_STR "0.1.0"
// Generally, we expect minor versions to be source code backwards-
// compatible, thought we might have a minimum version requirement.
//
+// Note: does not apply during early development.
+//
// AABBCCDD
-#if (LIBBUTL_VERSION < 9901 || \
- LIBBUTL_VERSION > 990000)
+#if (LIBBUTL_VERSION < 10000 || \
+ LIBBUTL_VERSION > 10000)
# error incompatible libbutl version
#endif
-// AABBCCDD
-#define BUILD_VERSION 9901
-#define BUILD_VERSION_STR "0.1.0-a1"
-
#endif // BUILD_VERSION