From 80df97f9724dc4d88acf3e630f3106be7f26416c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz?= Date: Wed, 28 Aug 2019 10:31:44 +0200 Subject: [PATCH] Bump to v1.1.3. assets/shell/bump-version.sh: updated. --- MiRCART-nw/package-lock.json | 2 +- MiRCART-nw/package.json | 2 +- assets/html/help.html | 2 +- assets/html/index.html | 2 +- assets/shell/bump-version.sh | 8 ++++---- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MiRCART-nw/package-lock.json b/MiRCART-nw/package-lock.json index 1177057..944936c 100644 --- a/MiRCART-nw/package-lock.json +++ b/MiRCART-nw/package-lock.json @@ -1,5 +1,5 @@ { "name": "MiRCART", - "version": "1.1.2", + "version": "1.1.3", "lockfileVersion": 1 } diff --git a/MiRCART-nw/package.json b/MiRCART-nw/package.json index 17317f6..de61d25 100644 --- a/MiRCART-nw/package.json +++ b/MiRCART-nw/package.json @@ -18,7 +18,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, - "version": "1.1.2", + "version": "1.1.3", "window": { "title": "MiRCART (standalone NW app)", "toolbar": true, diff --git a/assets/html/help.html b/assets/html/help.html index ed03962..2818f8e 100644 --- a/assets/html/help.html +++ b/assets/html/help.html @@ -7,7 +7,7 @@ - MiRCART v1.1.2 documentation + MiRCART v1.1.3 documentation diff --git a/assets/html/index.html b/assets/html/index.html index cc40fac..1ab24dd 100644 --- a/assets/html/index.html +++ b/assets/html/index.html @@ -9,7 +9,7 @@ - MiRCART v1.1.2 + MiRCART v1.1.3 diff --git a/assets/shell/bump-version.sh b/assets/shell/bump-version.sh index b5f086a..ece5471 100755 --- a/assets/shell/bump-version.sh +++ b/assets/shell/bump-version.sh @@ -36,11 +36,11 @@ main() { exit 1; fi; done; - rc sed -i"" '/"version":/s/\("version":\s*\)"'"${_version_old}"'"/\1"'"${_version_new}"'"/' \ - MiRCART-nw/package.json \ + rc sed -i"" '/"version":/s/\("version":\s*\)"'"${_version_old}"'"/\1"'"${_version_new}"'"/' \ + MiRCART-nw/package.json \ MiRCART-nw/package-lock.json; - rc sed -i"" '/[^<]\+ v/s/\(<title>[^<]\+ v\)'"${_version_old}"'\(.*<\)/\1'"${_version_new}"'\2/' \ - index.html assets/html/help.html; + rc sed -i"" '/<title>[^<]\+ v/s/\(<title>[^<]\+ v\)'"${_version_old}"'\(.*<\)/\1'"${_version_new}"'\2/' \ + assets/html/help.html assets/html/index.html; rc git commit -avm "Bump to v${_version_new}."; };