From 2a951a69dd8ac0eb52707236a4fc3e08f6682201 Mon Sep 17 00:00:00 2001 From: Adam Spofford <93943719+adamspofford-dfinity@users.noreply.github.com> Date: Wed, 10 Jul 2024 10:02:43 -0700 Subject: [PATCH] chore: Release 0.5.0 (#237) --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46bbad5..6269c9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.5.0] - 2024-07-10 + - Overhauled PEM auth. PEM files are now password-protected by default, and must be used instead of seed files. Passwords can be provided interactively or with `--password-file`. Keys can be generated unencrypted with `quill generate --storage-mode plaintext`, and encrypted keys can be converted to plaintext with `quill decrypt-pem`. - Overhauled output format. All commands should have human-readable output instead of candid IDL. Candid IDL format can be forced with `--raw`. - Added support for setting the install mode for UpgradeSnsControlledCanister proposals. diff --git a/Cargo.lock b/Cargo.lock index 33a548b..4eb8f8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4872,7 +4872,7 @@ checksum = "4339fc7a1021c9c1621d87f5e3505f2805c8c105420ba2f2a4df86814590c142" [[package]] name = "quill" -version = "0.4.4" +version = "0.5.0" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index 27c56cd..48623ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quill" -version = "0.4.4" +version = "0.5.0" authors = ["DFINITY Team"] edition = "2021" rust-version = "1.75.0"