Skip to content

Commit 2d066cc

Browse files
committed
feature: simple version update
1 parent 892dc12 commit 2d066cc

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
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.4-minor.1
20+
version: 0.0.5

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.4-minor.1"
7+
version = "0.0.5"
88
authors = [
99
{ name="Anton Sychev", email="[email protected]" },
1010
]

src/Rocket_Store.egg-info/PKG-INFO

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: Rocket-Store
3-
Version: 0.0.4
3+
Version: 0.0.5
44
Summary: Using the filesystem as a searchable database.
55
Author-email: Anton Sychev <[email protected]>
66
License: Rocket Store
@@ -90,7 +90,10 @@ Compare Rocket-Store, SQL and file system terms:
9090
To use Rocketstore, you must first import the library:
9191

9292
```python
93-
import Rocketstore, _FORMAT_JSON
93+
from Rocketstore import Rocketstore, _FORMAT_JSON
94+
95+
rs = Rocketstore()
96+
9497
```
9598

9699
### Post

src/Rocket_Store.egg-info/SOURCES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ src/Rocket_Store.egg-info/requires.txt
1717
src/Rocket_Store.egg-info/top_level.txt
1818
src/Rocketstore/Rocketstore.py
1919
src/Rocketstore/__init__.py
20+
src/Rocketstore/__version__.py
2021
src/Rocketstore/example.py
2122
src/Rocketstore/utils/__init__.py
2223
src/Rocketstore/utils/files.py
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
RocketStore
1+
Rocketstore

src/Rocketstore/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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.4-minor.1"
14+
__version__ = "0.0.5"
1515
__build__ = 0x000020
1616
__author__ = "Anton Sychev"
1717
__author_email__ = "[email protected]"

0 commit comments

Comments
 (0)