Skip to content

Commit 9f26ca5

Browse files
committed
feature: module export attributes
1 parent ef8d137 commit 9f26ca5

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ keywords:
1717
- file
1818
- rocket
1919
license: MIT
20-
version: 0.0.5
20+
version: 0.0.6

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,13 @@ Contributions are welcome. Please open an issue to discuss what you would like t
182182

183183
### Publish to Pypi
184184

185+
***Local:***
185186
```shell
186187
python -m pip install build twine
187188
python3 -m build
188189
twine check dist/*
189190
twine upload dist/*
190-
```
191+
```
192+
193+
***Live:***
194+
No need do nothing GitHub have Workflow action its publish auto

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "Rocket-Store"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
authors = [
99
{ name="Anton Sychev", email="anton@sychev.xyz" },
1010
]

src/Rocketstore/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
__title__ = "RocketStore"
1212
__description__ = "Rocket Store (Python) - Fast and Simple Database"
1313
__url__ = "https://github.com/klich3/rocket-store-python"
14-
__version__ = "0.0.5"
15-
__build__ = 0x000020
14+
__version__ = "0.0.6"
15+
__build__ = 0x000022
1616
__author__ = "Anton Sychev"
1717
__author_email__ = "anton@sychev.xyz"
1818
__copyright__ = "Copyright Simon Riget"

0 commit comments

Comments
 (0)