Skip to content

Commit 44ae08d

Browse files
committed
Increase version count prior to release - v0.0.6
1 parent a7d2c0a commit 44ae08d

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

docs/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,11 @@
2727

2828
**What's new?**
2929
- Multiple variables renamed.
30-
- First release under `python-tgpt`
30+
- First release under `python-tgpt`
31+
32+
## v0.0.6
33+
34+
**What's new?**
35+
- `Generate is the default command`. Thanks to @sameedzahoor
36+
- Control response framing `--quiet`
37+
- `Generate` based prompt optimizaion - `--code` & `--shell`

docs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<a href="https://github.com/Simatwa/python-tgpt/actions/workflows/python-test.yml"><img src="https://github.com/Simatwa/python-tgpt/actions/workflows/python-test.yml/badge.svg" alt="Python Test"/></a>
66
-->
77
<a href="https://github.com/Simatwa/python-tgpt/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/static/v1?logo=GPL&color=Blue&message=MIT&label=License"/></a>
8-
<a href="https://pypi.org/project/python-tgpt"><img alt="PyPi" src="https://img.shields.io/static/v1?logo=pypi&label=Pypi&message=v0.0.5&color=green"/></a>
8+
<a href="https://pypi.org/project/python-tgpt"><img alt="PyPi" src="https://img.shields.io/static/v1?logo=pypi&label=Pypi&message=v0.0.6&color=green"/></a>
99
<a href="https://github.com/psf/black"><img alt="Black" src="https://img.shields.io/static/v1?logo=Black&label=Code-style&message=Black"/></a>
1010
<a href="#"><img alt="Passing" src="https://img.shields.io/static/v1?logo=Docs&label=Docs&message=Passing&color=green"/></a>
1111
<a href="https://github.com/Simatwa/python-tgpt/actions/workflows/python-package.yml"><img src="https://github.com/Simatwa/python-tgpt/actions/workflows/python-package.yml/badge.svg"/></a>
@@ -84,6 +84,8 @@ This package features a ready to use commandline interface.
8484

8585
Instead of `python -m tgpt`, you can as well just use `tgpt`
8686

87+
As from [version 0.0.6](https://github.com/Simatwa/python-tgpt/releases), `generate` is the default command. So something like this will still work. `tgpt "<Your prompt>"`
88+
8789
<details>
8890

8991
<summary>

setup.py

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

1313
setup(
1414
name="python-tgpt",
15-
version="0.0.5",
15+
version="0.0.6",
1616
license="MIT",
1717
author="Smartwa",
1818
maintainer="Smartwa",

tgpt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .tgpt import TGPT
22
from .imager import Imager
33

4-
__version__ = "0.0.5"
4+
__version__ = "0.0.6"
55
__author__ = "Smartwa"
66
__repo__ = "https://github.com/Simatwa/python-tgpt"
77

0 commit comments

Comments
 (0)