From d8e8b3371586955a1cb51ffbcd8dfa0cc0e7ca52 Mon Sep 17 00:00:00 2001 From: Hyde46 Date: Sun, 6 Aug 2023 13:30:22 +0200 Subject: [PATCH] Bump version 1.4.2 --- CHANGES.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- example_troves/git.yml | 2 +- install.sh | 2 +- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1fb0866..22bc027 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 1.4.2 +- 🐛 Fix a lifetime longevity issue around theming password prompts ## 1.4.1 - ✨ List available namespaces when creating a new command - Move from tui to ratatui. Thanks [a-kenji](https://github.com/Hyde46/hoard/pull/292) diff --git a/Cargo.lock b/Cargo.lock index 7037c23..7cf5a7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -696,7 +696,7 @@ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "hoard-rs" -version = "1.4.1" +version = "1.4.2" dependencies = [ "anyhow", "array_tool", diff --git a/Cargo.toml b/Cargo.toml index 6b3c844..2dd74c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hoard-rs" -version = "1.4.1" +version = "1.4.2" edition = "2021" readme = "README.md" license = "MIT" diff --git a/README.md b/README.md index 6747f4c..d785ff0 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Install `hoard` by running If you are running `fish` shell ``` -LATEST_RELEASE=1.4.1 ./install.fish +LATEST_RELEASE=1.4.2 ./install.fish ``` ### AUR (Arch Linux) diff --git a/example_troves/git.yml b/example_troves/git.yml index 194283c..a9f8c7e 100644 --- a/example_troves/git.yml +++ b/example_troves/git.yml @@ -1,5 +1,5 @@ --- -version: 1.4.1 +version: 1.4.2 commands: - name: git_status namespace: git diff --git a/install.sh b/install.sh index fd70a01..29b5874 100755 --- a/install.sh +++ b/install.sh @@ -42,7 +42,7 @@ __hoard_install_with_cargo(){ __hoard_install_ubuntu(){ echo "Assuming Ubuntu distro. Trying to install .deb package" - ARTIFACT_URL="https://github.com/hyde46/hoard/releases/download/v1.4.1/hoard_1.4.1.deb" + ARTIFACT_URL="https://github.com/hyde46/hoard/releases/download/v1.4.2/hoard_1.4.2.deb" TEMP_DEB="$(mktemp)" && wget -O "$TEMP_DEB" "$ARTIFACT_URL"