Skip to content

Commit

Permalink
Release v0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Simatwa committed Feb 19, 2024
1 parent b320c82 commit 2ca3697
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion WebChatGPT/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from .main import ChatGPT
from importlib import metadata

__all__ = ["ChatGPT"]

__version__ = "0.2.7"
try:
__version__ = metadata.version('webchatgpt')
except metadata.PackageNotFoundError:
__version__='0.0.0'
__author__ = "Smartwa"
__repo__ = "https://github.com/Simatwa/WebChatGPT"
__info__ = "Reverse Engineering of ChatGPT Web-version."
8 changes: 7 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,10 @@ More console chat manipulation features.
**What's new?**

- Enhanced help info.
- Other minor updates.
- Other minor updates.

## v0.2.8

**What's new?**

- fix: Uses websocket.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="webchatgpt",
version="0.2.7",
version="0.2.8",
license="GNU v3",
author="Smartwa",
maintainer="Smartwa",
Expand Down

0 comments on commit 2ca3697

Please sign in to comment.