Skip to content

Commit

Permalink
Release: 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
guywaldman committed Jul 23, 2024
1 parent 126641e commit 4f34754
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 0.0.5

- Adds a new `general.access_to_shell_history` configuration flag for explicitly allowing access to shell history ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Adds a new `search.allow_remote_llm` configuration flag for explicitly allowing access to shell history to non-local LLM providers ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Adds a new `search.shell_history` configuration for specifying a custom path to a shell history file (added for testing, but may be optionally useful for users none the less) ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Adds a new `search.index_dir` configuration for specifying a custom path to a directory which will contain the indexing data and metadata (added for testing, but may be optionally useful for users none the less) ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Adds and improves on E2E test coverage ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Fixes an issue where embeddings wouldn't work for OpenAI since embedding dimensions were provided and were throwing an error (see https://github.com/guywaldman/orch/pull/13) ([#33](https://github.com/guywaldman/magic-cli/pull/33))
- Various fixes & enhancements ([#33](https://github.com/guywaldman/magic-cli/pull/33))

## Version 0.0.4

- Fixed issue where the OpenAI API key was not used from the configuration ([#31](https://github.com/guywaldman/magic-cli/pull/31))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magic-cli"
version = "0.0.4"
version = "0.0.5"
description = "Command line utility to make you a magician in the terminal"
homepage = "https://github.com/guywaldman/magic-cli"
repository = "https://github.com/guywaldman/magic-cli"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Magic CLI is a command line utility which uses LLMs to help you use the command
### Shell

```shell
curl -LsSf https://github.com/guywaldman/magic-cli/releases/download/0.0.4/magic-cli-installer.sh | sh
curl -LsSf https://github.com/guywaldman/magic-cli/releases/download/0.0.5/magic-cli-installer.sh | sh
```

### Homebrew
Expand All @@ -39,7 +39,7 @@ brew install guywaldman/tap/magic-cli
### PowerShell

```powershell
powershell -c "irm https://github.com/guywaldman/magic-cli/releases/download/0.0.4/magic-cli-installer.ps1 | iex"
powershell -c "irm https://github.com/guywaldman/magic-cli/releases/download/0.0.5/magic-cli-installer.ps1 | iex"
```

### Binaries
Expand Down

0 comments on commit 4f34754

Please sign in to comment.