Skip to content

Commit 61a9d64

Browse files
committed
Bump version and add a changelog
1 parent c608855 commit 61a9d64

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## Versions
4+
5+
### v0.1.2
6+
7+
- Fixed an issue in which the interactive prompt would write over itself
8+
instead of wrapping around onto the next line. This apparently stems
9+
from an issue in the GNU readline library.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gpt-chat-cli"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
authors = [
99
{ name="Flu0r1ne", email="[email protected]" },
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setuptools.setup(
44
name='gpt-chat-cli',
5-
version='0.1.1',
5+
version='0.1.2',
66
entry_points = {
77
'console_scripts': ['gpt-chat-cli=gpt_chat_cli.gcli:main'],
88
},

src/gpt_chat_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.1.1'
1+
VERSION = '0.1.2'

0 commit comments

Comments
 (0)