Skip to content

Commit

Permalink
Bump to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyde46 committed Jun 11, 2022
1 parent 2d9ee0c commit 9260908
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 73 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.1
- ✨ Read out local `trove.yml` file in current directory if available ( Edit ~/.config/hoard/config.yml `read_from_current_directory` to disable )
-`hoard set_parameter_token` to customize which parameter token is used
-`hoard info` shows where `config.yml` and `trove.yml` files are located
## 🚀 1.0.0
- ✨ Advanced export allowing subset of namespaces or commands to be exported
- 🐛 Fix bug where selecting a command when running `hoard` as a `zsh` plugin produces gibberish rendered text in the terminal
Expand Down
78 changes: 11 additions & 67 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hoard-rs"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
readme = "README.md"
license = "MIT"
Expand Down Expand Up @@ -42,7 +42,7 @@ log = "0.4"
eyre = "0.6"
simple_logger = "2.1.0"
prettytable-rs = "0.8.0"
tui = { version = "0.17.0", features = ["termion"]}
tui = { version = "0.18.0", features = ["termion"]}
chrono = { version = "0.4", features = ["serde"] }
rand = { version = "0.8.4", default-features = false, features = ["std"] }
thiserror = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Install `hoard` by running
If you are running `fish` shell

```
LATEST_RELEASE=1.0.0 ./install.fish
LATEST_RELEASE=1.0.1 ./install.fish
```

### Brew on MacOS
Expand Down Expand Up @@ -144,6 +144,7 @@ hoard list
When running `hoard list` as a shell plugin and selecting a parameterized command, `hoard` will ask for all missing parameters to input before sending the complete command to your shell input.

If there is a `trove.yml` file present in the local directory, `hoard` will only load this trove file and not display your "global" trove!
( Edit ~/.config/hoard/config.yml `read_from_current_directory` to disable )

#### Delete a command

Expand Down
2 changes: 1 addition & 1 deletion example_troves/git.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 1.0.0
version: 1.0.1
commands:
- name: git_status
namespace: git
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.0/hoard_1.0.0.deb"
ARTIFACT_URL="https://github.com/hyde46/hoard/releases/download/v1.0.1/hoard_1.0.1.deb"

TEMP_DEB="$(mktemp)" &&
wget -O "$TEMP_DEB" "$ARTIFACT_URL"
Expand Down
2 changes: 1 addition & 1 deletion src/resources/cli.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hoard
version: "1.0.0"
version: "1.0.1"
settings:
- ArgRequiredElseHelp
args:
Expand Down

0 comments on commit 9260908

Please sign in to comment.