Skip to content

Commit fe77204

Browse files
committed
Merge branch 'release/v.0.0.4'
2 parents 4f6c298 + dd2ed55 commit fe77204

11 files changed

+22
-10
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.3
20+
version: 0.0.4

dist/Rocket-Store-0.0.2.tar.gz

-17.1 KB
Binary file not shown.

dist/Rocket-Store-0.0.4.tar.gz

20.7 KB
Binary file not shown.
-16.1 KB
Binary file not shown.
16.8 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.3"
7+
version = "0.0.4"
88
authors = [
99
{ name="Anton Sychev", email="[email protected]" },
1010
]

src/Rocket_Store.egg-info/PKG-INFO

Lines changed: 2 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.2
3+
Version: 0.0.4
44
Summary: Using the filesystem as a searchable database.
55
Author-email: Anton Sychev <[email protected]>
66
License: Rocket Store
@@ -90,7 +90,7 @@ Compare Rocket-Store, SQL and file system terms:
9090
To use Rocketstore, you must first import the library:
9191

9292
```python
93-
from Rocketstore import Rocketstore, _FORMAT_JSON
93+
import Rocketstore, _FORMAT_JSON
9494
```
9595

9696
### Post

src/Rocket_Store.egg-info/SOURCES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ LICENSE
33
MANIFEST.in
44
README.md
55
pyproject.toml
6+
src/RocketStore/RocketStore.py
7+
src/RocketStore/Rocketstore.py
8+
src/RocketStore/__init__.py
9+
src/RocketStore/__version__.py
10+
src/RocketStore/example.py
11+
src/RocketStore/utils/__init__.py
12+
src/RocketStore/utils/files.py
613
src/Rocket_Store.egg-info/PKG-INFO
714
src/Rocket_Store.egg-info/SOURCES.txt
815
src/Rocket_Store.egg-info/dependency_links.txt
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: 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.3"
15-
__build__ = 0x000018
14+
__version__ = "0.0.4"
15+
__build__ = 0x000019
1616
__author__ = "Anton Sychev"
1717
__author_email__ = "[email protected]"
1818
__copyright__ = "Copyright Simon Riget"

src/Rocketstore/example.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
Author: <Anton Sychev> (anton at sychev dot xyz)
66
sample.py (c) 2023
77
Created: 2023-12-01 01:02:01
8-
Desc: sample create instance of Rocketstore
8+
Desc: sample create instance of RocketStore
99
Docs: documentation
1010
"""
1111

12-
from Rocketstore import Rocketstore, _FORMAT_JSON, _FORMAT_NATIVE, _FORMAT_XML, _ADD_AUTO_INC, _ORDER_DESC
12+
import RocketStore
13+
import _FORMAT_JSON
14+
import _FORMAT_NATIVE
15+
import _FORMAT_XML
16+
import _ADD_AUTO_INC
17+
import _ORDER_DESC
1318

14-
rs = Rocketstore(**{"data_storage_area": "./webapp",
19+
rs = RocketStore(**{"data_storage_area": "./webapp",
1520
"data_format": _FORMAT_JSON})
1621

1722
rs.post("cars", "Mercedes_Benz_GT_R", {"owner": "Lisa Simpson"})

0 commit comments

Comments
 (0)