diff --git a/CHANGELOG.md b/CHANGELOG.md index 18da01d..b8e53cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.7] - 2019-07-09 + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + ## [0.0.6] - 2019-07-09 ### Added diff --git a/config.nix b/config.nix index 5dd6a08..1d20a9c 100644 --- a/config.nix +++ b/config.nix @@ -62,7 +62,7 @@ hn-release-hook-publish-rust \ # the commit hash that the release process should target # this will always be behind what ends up being deployed # the release process needs to add some commits for changelog etc. - commit = "28eb999470dbbb9945322c760134895450877630"; + commit = "819688a90d3836587b9e5d5c9722c6b9c7534df0"; # the semver for prev and current releases # the previous version will be scanned/bumped by release scripts diff --git a/crates/holochain_json_api/Cargo.toml b/crates/holochain_json_api/Cargo.toml index d6def0c..e958c46 100644 --- a/crates/holochain_json_api/Cargo.toml +++ b/crates/holochain_json_api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_json_api" -version = "0.0.6" +version = "0.0.7" authors = ["Holochain Core Dev Team "] build = "build.rs" description = "json api and utilities for holochain" @@ -32,7 +32,7 @@ rust-base58 = "=0.0.4" objekt = "=0.1.2" # keep the version on the left hand side # there is a regex in the release hook looking for it -holochain_json_derive = { version = "=0.0.6", path = "../holochain_json_derive" } +holochain_json_derive = { version = "=0.0.7", path = "../holochain_json_derive" } uuid = { version = "=0.7.1", features = ["v4"] } [dev-dependencies] diff --git a/crates/holochain_json_derive/Cargo.toml b/crates/holochain_json_derive/Cargo.toml index c6054b9..c0880d0 100644 --- a/crates/holochain_json_derive/Cargo.toml +++ b/crates/holochain_json_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holochain_json_derive" -version = "0.0.6" +version = "0.0.7" authors = ["Holochain Core Dev Team "] description = "Provides derive macros for holochain persistence." edition="2018"