From a0b93f8382d05340ef0cdd18d1e25b68ef04241c Mon Sep 17 00:00:00 2001 From: Param Singh Date: Wed, 15 Feb 2023 21:42:56 +0530 Subject: [PATCH] bump version --- huh/huh | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/huh/huh b/huh/huh index 6160c12..ecc056e 100755 --- a/huh/huh +++ b/huh/huh @@ -32,7 +32,8 @@ or open a GitHub issue (https://github.com/paramsingh/huh). def solve(): openai.api_key = keyring.get_password('huh', 'openai_key') if not openai.api_key: - click.echo("Please run 'huh setup' first.") + click.echo( + "Could not find an OpenAI API key. Please run 'huh setup' first.") return command = click.prompt("Enter the command you ran") diff --git a/setup.py b/setup.py index b0b3725..63cc9a8 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(fname): setup( name="huh", - version="0.0.1", + version="0.0.2", author="Param Singh", author_email="me@param.codes", description="A tool to help you understand error messages.",