From e05c561b2634e21ede31ce35c0d1f7d6a7c99f6a Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 8 Nov 2018 15:34:30 +0100 Subject: [PATCH 1/3] Change version to dev-master --- module.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.info b/module.info index 3cd6a9a..b019935 100644 --- a/module.info +++ b/module.info @@ -1,5 +1,5 @@ Name: React Bundle -Version: master +Version: dev-master Description: ReactPHP-based 3rd party libraries This repository is an attempt to ship 3rd party libraries that might be useful for asynchronous PHP-based Icinga Web 2 modules. Please download the latest From 4e510e5ea745b3c5c3b82f8ac7c7736040abfd40 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 9 Nov 2018 09:57:23 +0100 Subject: [PATCH 2/3] Set version in module.info --- bin/make-release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/make-release.sh b/bin/make-release.sh index 0e2b31b..d2a1ccc 100755 --- a/bin/make-release.sh +++ b/bin/make-release.sh @@ -29,6 +29,8 @@ find vendor/ -type f -name "*.php" \ | grep -v '/test/' \ | xargs -l git add -f find vendor/ -type f -name LICENSE | xargs -l git add -f +sed -i '' "s/^Version:.*/Version: v$VERSION/" module.info +git add module.info git commit -m "Version v$VERSION" rm -f composer.lock From 254eb41ba6fbe359293bb9e403dd5fba3949770a Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 9 Nov 2018 09:58:13 +0100 Subject: [PATCH 3/3] Support make-release on Macs --- bin/make-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/make-release.sh b/bin/make-release.sh index d2a1ccc..e54d9fc 100755 --- a/bin/make-release.sh +++ b/bin/make-release.sh @@ -27,8 +27,8 @@ find vendor/ -type f -name "*.php" \ | grep -v '/example/' \ | grep -v '/tests/' \ | grep -v '/test/' \ - | xargs -l git add -f -find vendor/ -type f -name LICENSE | xargs -l git add -f + | xargs git add -f +find vendor/ -type f -name LICENSE | xargs git add -f sed -i '' "s/^Version:.*/Version: v$VERSION/" module.info git add module.info git commit -m "Version v$VERSION"