File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -392,4 +392,12 @@ For instance:
392392
393393- Execute scripts native interpreter - * rawdog*
394394- Typos fixed.
395+ - Other minor fixes.
396+
397+ ## v0.4.9
398+
399+ ** What's new?**
400+
401+ - ` webchatgpt ` supports intro prompt.
402+ - Fix: placeholders consistency - ` {{stream}}|{{copied}} `
395403- Other minor fixes.
Original file line number Diff line number Diff line change 3636
3737setup (
3838 name = "python-tgpt" ,
39- version = "0.4.8 " ,
39+ version = "0.4.9 " ,
4040 license = "MIT" ,
4141 author = "Smartwa" ,
4242 maintainer = "Smartwa" ,
Original file line number Diff line number Diff line change 11from .utils import appdir
22import g4f
3+ from importlib import metadata
4+
5+ try :
6+ __version__ = metadata .version ('python-tgpt' )
7+ except metadata .PackageNotFoundError :
8+ __version__ = '0.0.0'
39
4- __version__ = "0.4.8"
510__author__ = "Smartwa"
611__repo__ = "https://github.com/Simatwa/python-tgpt"
712
You can’t perform that action at this time.
0 commit comments