aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-08 16:51:17 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-08 16:51:17 -0500
commit61a9d6426cdb0e32436b704561b7a3ff47b60b04 (patch)
treeb2841833cafbb94d452a75b3dbbd3713367eec46
parentc6088554f68bda27d3b74468f9e65d0ea322a7b6 (diff)
downloadgpt-chat-cli-61a9d6426cdb0e32436b704561b7a3ff47b60b04.tar.xz
gpt-chat-cli-61a9d6426cdb0e32436b704561b7a3ff47b60b04.zip
Bump version and add a changelog
-rw-r--r--CHANGELOG.md9
-rw-r--r--pyproject.toml2
-rw-r--r--setup.py2
-rw-r--r--src/gpt_chat_cli/version.py2
4 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..9442020
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,9 @@
+# Changelog
+
+## Versions
+
+### v0.1.2
+
+- Fixed an issue in which the interactive prompt would write over itself
+ instead of wrapping around onto the next line. This apparently stems
+ from an issue in the GNU readline library.
diff --git a/pyproject.toml b/pyproject.toml
index ea4cd0f..a5ee66f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "gpt-chat-cli"
-version = "0.1.1"
+version = "0.1.2"
authors = [
{ name="Flu0r1ne", email="flu0r1ne@flu0r1ne.net" },
]
diff --git a/setup.py b/setup.py
index 81f372d..269dc73 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ import setuptools
setuptools.setup(
name='gpt-chat-cli',
- version='0.1.1',
+ version='0.1.2',
entry_points = {
'console_scripts': ['gpt-chat-cli=gpt_chat_cli.gcli:main'],
},
diff --git a/src/gpt_chat_cli/version.py b/src/gpt_chat_cli/version.py
index 8d76f25..856ce1d 100644
--- a/src/gpt_chat_cli/version.py
+++ b/src/gpt_chat_cli/version.py
@@ -1 +1 @@
-VERSION = '0.1.1'
+VERSION = '0.1.2'