Skip to content

Commit 9582f7e

Browse files
committed
v0.4.1
1 parent e46ea9f commit 9582f7e

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
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

7+
## [0.4.1] - 2022-12-16 [PyPI](https://pypi.org/project/chatgpt-gui/0.4.1)
8+
### Added
9+
- Saving/Loading of conversations
10+
- Obvious HTTP client errors to provide better context, in form of popups
11+
- Storage for the `_cfuvid` cookie (Rate Limiting)
12+
13+
### Changed
14+
- Many error messages
15+
16+
### Fixed
17+
- Crash on startup if missing Google Chrome
18+
- (Attempted) fix for chromedriver proxy support
19+
20+
721
## [0.4] - 2022-12-13 [PyPI](https://pypi.org/project/chatgpt-gui/0.4)
822
### Added
923
- Automatic `cf_clearance` and `__cf_bm` support
@@ -84,7 +98,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8498
- Basic input and output communication to ChatGPT
8599

86100

87-
[Unreleased]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.4...HEAD
101+
[Unreleased]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.4.1...HEAD
102+
[0.4.1]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.4...v0.4.1
88103
[0.4]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3.2...v0.4
89104
[0.3.3]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3.2...v0.3.3
90105
[0.3.2]: https://github.com/Cubicpath/ChatGPT-GUI/compare/v0.3.1...v0.3.2

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=0)
128+
__version__ = _stringify(*__version_info__)
129129
"""String representation of version number."""

0 commit comments

Comments
 (0)