diff --git a/README.md b/README.md index 27f4391..af265b6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ It needs to know which versions you want to be running or packaging. #### acorn-hc -You can pass in a version number of an [acorn-hc](https://github.com/h-be/acorn-hc) release, like 0.3.4 +You can pass in a version number of an [acorn-hc](https://github.com/h-be/acorn-hc) release, like 0.3.6 ```bash nix-shell --run 'acorn-bundle-dna x.y.z' @@ -50,7 +50,7 @@ This will result in there being #### acorn-ui -You can pass in a version number of an [acorn-ui](https://github.com/h-be/acorn-ui) release, like 0.3.5 +You can pass in a version number of an [acorn-ui](https://github.com/h-be/acorn-ui) release, like 0.3.11 Just run diff --git a/config.nix b/config.nix index bb1a55a..81c899f 100644 --- a/config.nix +++ b/config.nix @@ -68,8 +68,8 @@ echo "All finished!!!" # the previous version will be scanned/bumped by release scripts # the current version is what the release scripts bump *to* version = { - current = "0.3.4"; - previous = "0.3.3"; + current = "0.3.5"; + previous = "0.3.4"; }; github = { diff --git a/nix/acorn/default.nix b/nix/acorn/default.nix index ad74458..1497975 100644 --- a/nix/acorn/default.nix +++ b/nix/acorn/default.nix @@ -3,11 +3,11 @@ let bundle-dna = (pkgs.writeShellScriptBin "acorn-bundle-dna" '' rm -rf dna # an optional first argument should be the version number you want - # default to 0.3.5 - echo "fetching DNA from https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.5}/profiles.dna.json" - echo "fetching DNA from https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.5}/projects.dna.json" - curl -O -L https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.5}/profiles.dna.json - curl -O -L https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.5}/projects.dna.json + # default to 0.3.6 + echo "fetching DNA from https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.6}/profiles.dna.json" + echo "fetching DNA from https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.6}/projects.dna.json" + curl -O -L https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.6}/profiles.dna.json + curl -O -L https://github.com/h-be/acorn-hc/releases/download/v''${1:-0.3.6}/projects.dna.json mkdir dna mv profiles.dna.json dna/profiles.dna.json mv projects.dna.json dna/projects.dna.json @@ -21,8 +21,8 @@ let rm -rf ui mkdir ui # an optional first argument should be the version number you want - # default to 0.3.10 - curl -O -L https://github.com/h-be/acorn-ui/releases/download/v''${1:-0.3.10}/acorn-ui.zip + # default to 0.3.11 + curl -O -L https://github.com/h-be/acorn-ui/releases/download/v''${1:-0.3.11}/acorn-ui.zip # unzip into the ./ui folder unzip acorn-ui.zip -d ui rm acorn-ui.zip diff --git a/package-lock.json b/package-lock.json index 894cb4c..0940cd4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "Acorn", - "version": "0.3.4", + "version": "0.3.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1b6502c..7522235 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Acorn", - "version": "0.3.4", + "version": "0.3.5", "description": "A Holochain State of Affairs Tree application", "main": "main.js", "scripts": {