Skip to content

Commit 07a01ad

Browse files
committed
v0.3.1
1 parent 3bee811 commit 07a01ad

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [0.3.1] - 2022-12-7 [PyPI](https://pypi.org/project/chatgpt-gui/0.3.1)
9+
### Added
10+
- Shows current account pfp and email address
11+
- "Solve Captcha" dialog (Untested)
12+
13+
### Changed
14+
- Default message action from `next` to `variant`
15+
16+
### Fixes
17+
- Crash on startup
18+
19+
820
## [0.3] - 2022-12-7 [PyPI](https://pypi.org/project/chatgpt-gui/0.3)
921
### Added
1022
- Authenticator (No more manual session tokens)
@@ -41,7 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4153
- Basic input and output communication to ChatGPT
4254

4355

44-
[Unreleased]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3...HEAD
56+
[Unreleased]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3.1...HEAD
57+
[0.3.1]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3...v0.3.1
4558
[0.3]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.2...v0.3
4659
[0.2]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.1.1...v0.2
4760
[0.1.1]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.1.0...v0.1.1

src/chatgpt_gui/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ def _stringify(major: int, minor: int, micro: int = 0, releaselevel: str = 'fina
125125
return v_number
126126

127127

128-
__version__ = _stringify(*__version_info__, dev=True)
128+
__version__ = _stringify(*__version_info__)
129129
"""String representation of version number."""

0 commit comments

Comments
 (0)