From f6d3bb90247f9e8ede41a45d1b117b6271d6b799 Mon Sep 17 00:00:00 2001 From: John Bintz <27256+johnbintz@users.noreply.github.com> Date: Fri, 26 Jun 2020 11:58:24 -0400 Subject: [PATCH] 0.73.0 * Fix upgrade_hugo to handle appVersion > 10 --- .sandstorm/app-marketing-version | 2 +- .sandstorm/sandstorm-files.list | 8 ++++---- .sandstorm/sandstorm-pkgdef.capnp | 2 +- bin/upgrade_hugo | 2 +- hugo-version | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.sandstorm/app-marketing-version b/.sandstorm/app-marketing-version index 04c0b45..31a047d 100644 --- a/.sandstorm/app-marketing-version +++ b/.sandstorm/app-marketing-version @@ -1 +1 @@ -0.72.0~2020-06-02 +0.73.0~2020-06-24 diff --git a/.sandstorm/sandstorm-files.list b/.sandstorm/sandstorm-files.list index 3776ea2..e6afd9d 100644 --- a/.sandstorm/sandstorm-files.list +++ b/.sandstorm/sandstorm-files.list @@ -90,13 +90,13 @@ lib64/ld-linux-x86-64.so.2 opt/app opt/app/.babelrc opt/app/.cloudcmd.menu.js -opt/app/.nuxt/dist/0.nuxt.bundle.db62f68fec4fd5eb3b91.js +opt/app/.nuxt/dist/0.nuxt.bundle.16482ff29275c33d0755.js opt/app/.nuxt/dist/1.nuxt.bundle.89a9958091c34dcc68ed.js opt/app/.nuxt/dist/index.html -opt/app/.nuxt/dist/manifest.c392825db031b79346a6.js -opt/app/.nuxt/dist/nuxt.bundle.a6e53aa463d5ff4a2745.js +opt/app/.nuxt/dist/manifest.9697d6a9fab25e1a411d.js +opt/app/.nuxt/dist/nuxt.bundle.6a166d57ce07674600cf.js opt/app/.nuxt/dist/server-bundle.json -opt/app/.nuxt/dist/vendor.bundle.c392825db031b79346a6.js +opt/app/.nuxt/dist/vendor.bundle.9697d6a9fab25e1a411d.js opt/app/.sandstorm/launcher.sh opt/app/README.md opt/app/hugo-version diff --git a/.sandstorm/sandstorm-pkgdef.capnp b/.sandstorm/sandstorm-pkgdef.capnp index 26b1a2d..545ccc0 100644 --- a/.sandstorm/sandstorm-pkgdef.capnp +++ b/.sandstorm/sandstorm-pkgdef.capnp @@ -19,7 +19,7 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Hugo"), - appVersion = 10, # Increment this for every release. + appVersion = 11, # Increment this for every release. appMarketingVersion = (defaultText = (embed "app-marketing-version")), # Human-readable representation of appVersion. Should match the way you diff --git a/bin/upgrade_hugo b/bin/upgrade_hugo index ac24feb..709da85 100755 --- a/bin/upgrade_hugo +++ b/bin/upgrade_hugo @@ -34,7 +34,7 @@ lines = File.readlines('.sandstorm/sandstorm-pkgdef.capnp') lines = lines.map do |line| next line unless line['appVersion'] - line.gsub(/= ([0-9])+,/) { |m| "= #{$1.to_i + 1}," } + line.gsub(/= ([0-9]+),/) { |m| "= #{$1.to_i + 1}," } end File.open('.sandstorm/sandstorm-pkgdef.capnp', 'w') { |fh| fh.print lines.join } diff --git a/hugo-version b/hugo-version index 7375dee..31b648b 100644 --- a/hugo-version +++ b/hugo-version @@ -1 +1 @@ -0.72.0 +0.73.0