Skip to content

Commit 60b0272

Browse files
committed
Merge tag 'v0.0.5' into develop
no message
2 parents 892dc12 + 8ef82d3 commit 60b0272

File tree

10 files changed

+10
-6
lines changed

10 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

dist/Rocket-Store-0.0.4.tar.gz

-20.7 KB
Binary file not shown.

dist/Rocket-Store-0.0.5.tar.gz

20.7 KB
Binary file not shown.
-16.8 KB
Binary file not shown.
16.9 KB
Binary file not shown.

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="anton@sychev.xyz" },
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 <anton@sychev.xyz>
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__ = "anton@sychev.xyz"

0 commit comments

Comments
 (0)