diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-27 21:30:42 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-06-27 21:30:42 +0300 |
commit | a5c1317d86c5338843a815d4bf547a0394635d5e (patch) | |
tree | 05bceb303ac7cf6e6fb9a154faa27c85ca2ff4d7 | |
parent | 7a8854513c444bc841c9c0906db3fea2d57134a6 (diff) |
Release version 1.0.0+11v1.0.0+11
Add language manifest value.
Rely on new header pre-generation for version.hxx.
Add *.dylib to .gitignore file.
Bump build2 version requirement to 0.16.0-.
-rw-r--r-- | libformat/.gitignore | 1 | ||||
-rw-r--r-- | libformat/libformat/buildfile | 8 | ||||
-rw-r--r-- | libformat/manifest | 7 |
3 files changed, 5 insertions, 11 deletions
diff --git a/libformat/.gitignore b/libformat/.gitignore index 6435b97..1c363a0 100644 --- a/libformat/.gitignore +++ b/libformat/.gitignore @@ -12,6 +12,7 @@ *.pcm *.ifc *.so +*.dylib *.dll *.a *.lib diff --git a/libformat/libformat/buildfile b/libformat/libformat/buildfile index 4a32b0b..814ee33 100644 --- a/libformat/libformat/buildfile +++ b/libformat/libformat/buildfile @@ -4,15 +4,7 @@ impl_libs = # Implementation dependencies. lib{format}: {hxx ixx txx cxx}{** -version} hxx{version} $impl_libs $intf_libs -# Include the generated version header into the distribution (so that we don't -# pick up an installed one) and don't remove it when cleaning in src (so that -# clean results in a state identical to distributed). -# hxx{version}: in{version} $src_root/manifest -{ - dist = true - clean = ($src_root != $out_root) -} hxx{export}@./: cxx.importable = false diff --git a/libformat/manifest b/libformat/manifest index 19fdaa6..c3dfe80 100644 --- a/libformat/manifest +++ b/libformat/manifest @@ -1,6 +1,7 @@ : 1 name: libformat -version: 1.0.0+10 +version: 1.0.0+11 +language: c++ project: hello summary: The "Hello World" example formatter library license: MIT ; MIT License. @@ -11,5 +12,5 @@ src-url: https://git.build2.org/cgit/hello/libformat/tree/libformat email: users@build2.org build-warning-email: builds@build2.org builds: all -depends: * build2 >= 0.14.0 -depends: * bpkg >= 0.14.0 +depends: * build2 >= 0.16.0- +depends: * bpkg >= 0.16.0- |