From b8ac74b58f270e8ebbea6b0bc7771475a4ac35bd Mon Sep 17 00:00:00 2001 From: Jost Schulte Date: Mon, 10 Jun 2024 21:01:35 -0600 Subject: [PATCH] chore(release): v0.6.0-dev.1 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bd3486..4f6ca1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## \[Unreleased\] ### Added +### Changed +### Fixed +### Removed + +## 2024-06-10: v0.6.0-dev.1 +### Added +- New call `AppRequest::ProvideMemproofs`. An app can be installed with deferred membrane proofs, which can later be provided through this call. + ### Changed - Remove unnecessary use of `&mut self` in the app and admin clients. These used to be needed when the internal `send` mutated state, but it no longer does that so we can drop the requirement for the clients to be mutable. diff --git a/Cargo.lock b/Cargo.lock index 2ecba1d..386af50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2487,7 +2487,7 @@ dependencies = [ [[package]] name = "holochain_client" -version = "0.6.0-dev.0" +version = "0.6.0-dev.1" dependencies = [ "again", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 2830808..3ea5c24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ name = "holochain_client" readme = "README.md" repository = "https://github.com/holochain/holochain-client-rust" resolver = "2" -version = "0.6.0-dev.0" +version = "0.6.0-dev.1" [workspace] members = ["fixture/zomes/foo"]