diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-08 08:57:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-08 08:57:24 +0200 |
commit | 02e321b97889b558ecaad5ed03c80aee08f9c0ba (patch) | |
tree | 79ec5ac60398175fe593b7574635c5da153b408c | |
parent | 968d713dc929b0ab86738846e0f38399c3af2b3f (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.
-rw-r--r-- | bpkg/bpkg-version | 18 | ||||
-rw-r--r-- | build/bootstrap.build | 3 | ||||
-rw-r--r-- | version | 2 |
3 files changed, 15 insertions, 8 deletions
diff --git a/bpkg/bpkg-version b/bpkg/bpkg-version index a4be00b..c9ebe17 100644 --- a/bpkg/bpkg-version +++ b/bpkg/bpkg-version @@ -23,19 +23,25 @@ // 2.2.0-a1 02019901 // 3.0.0-b2 02999952 // +// AABBCCDD +#define BPKG_VERSION 10000 +#define BPKG_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 (LIBBPKG_VERSION < 9901 || \ - LIBBPKG_VERSION > 990000) -# error incompatible libbpkg version +#if (LIBBUTL_VERSION < 10000 || \ + LIBBUTL_VERSION > 10000) +# error incompatible libbutl version #endif -// AABBCCDD -#define BPKG_VERSION 9901 -#define BPKG_VERSION_STR "0.1.0-a1" +#if (LIBBPKG_VERSION < 10000 || \ + LIBBPKG_VERSION > 10000) +# error incompatible libbpkg version +#endif // User agent. // diff --git a/build/bootstrap.build b/build/bootstrap.build index 56f9953..24c347a 100644 --- a/build/bootstrap.build +++ b/build/bootstrap.build @@ -3,8 +3,9 @@ # license : MIT; see accompanying LICENSE file project = bpkg -version = 0.1.0-a1 +version = 0.1.0 +using build@0.1.0 using config using dist using install @@ -1 +1 @@ -0.1.0-a1 +0.1.0 |