Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
bump example.default.nix to 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Jul 9, 2019
1 parent 5598de1 commit 0095ae8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG-UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

- example.default.nix points to holonix 0.0.12

### Deprecated

### Removed

### Fixed

### Security

4 changes: 2 additions & 2 deletions example.config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
# the previous version will be scanned/bumped by release scripts
# the current version is what the release scripts bump *to*
version = {
current = "0.0.12";
previous = "0.0.11";
current = "0.0.13";
previous = "0.0.12";
};

github = {
Expand Down
6 changes: 3 additions & 3 deletions example.default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ let

# true = use a github repository as the holonix base (recommended)
# false = use a local copy of holonix (useful for debugging)
use-github = false;
use-github = true;

# configure the remote holonix github when use-github = true
github = {

# can be any github ref
# branch, tag, commit, etc.
ref = "0.0.7";
ref = "0.0.12";

# the sha of what is downloaded from the above ref
# note: even if you change the above ref it will not be redownloaded until
# the sha here changes (the sha is the cache key for downloads)
# note: to get a new sha, get nix to try and download a bad sha
# it will complain and tell you the right sha
sha256 = "169xbmj9z6pxqz15r2vk5gd5rqzg0zbw6xmjycspx87822xiyrlg";
sha256 = "1hlfd2vr8x0faa8d8zhrnkqadvn6wmvwnl9zl920vb1p08qg24ka";

# the github owner of the holonix repo
owner = "holochain";
Expand Down

0 comments on commit 0095ae8

Please sign in to comment.