Skip to content
This repository has been archived by the owner on May 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #29 from h-be/0-3-5
Browse files Browse the repository at this point in the history
release 0.3.5 with new dna (0.3.6) and ui (0.3.11)
  • Loading branch information
Connoropolous authored Aug 20, 2020
2 parents 04b233c + 7cd7269 commit 43e67b9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
14 changes: 7 additions & 7 deletions nix/acorn/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 43e67b9

Please sign in to comment.