summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-27 21:39:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-27 21:39:24 +0300
commita0d8acd222160d0dce55970419ab83494d73c044 (patch)
tree56798e3e10fbac85b7f55876a7d834657ea922c7
parent7f62790591b66bda248140013bdbd12bf078c2a2 (diff)
Release version 1.1.0+11HEADv1.1.0+11master
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--libhello/.gitignore1
-rw-r--r--libhello/libhello/buildfile8
-rw-r--r--libhello/manifest7
3 files changed, 5 insertions, 11 deletions
diff --git a/libhello/.gitignore b/libhello/.gitignore
index 6435b97..1c363a0 100644
--- a/libhello/.gitignore
+++ b/libhello/.gitignore
@@ -12,6 +12,7 @@
*.pcm
*.ifc
*.so
+*.dylib
*.dll
*.a
*.lib
diff --git a/libhello/libhello/buildfile b/libhello/libhello/buildfile
index 833d23d..c108327 100644
--- a/libhello/libhello/buildfile
+++ b/libhello/libhello/buildfile
@@ -3,15 +3,7 @@ import impl_libs = libprint%lib{print} # Implementation dependency.
lib{hello}: {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/libhello/manifest b/libhello/manifest
index f6ce3be..83530d8 100644
--- a/libhello/manifest
+++ b/libhello/manifest
@@ -1,6 +1,7 @@
: 1
name: libhello
-version: 1.1.0+10
+version: 1.1.0+11
+language: c++
project: hello
summary: The "Hello World" example library
license: MIT ; MIT License.
@@ -11,7 +12,7 @@ src-url: https://git.build2.org/cgit/hello/libhello/tree/libhello
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-
depends: libformat ^1.0.0
depends: libprint ^1.0.0