Skip to content

Commit 3f55b82

Browse files
committed
Merge branch 'release/v0.0.9'
2 parents e9615a8 + 5742f70 commit 3f55b82

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
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.8-monor.2
20+
version: 0.0.9

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

src/Rocketstore/Rocketstore.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,10 +307,6 @@ def get(
307307
for i in range(len(keys)):
308308
file_name = os.path.join(scan_dir, keys[i])
309309

310-
# Skip .DS_Store files
311-
# if not file_name.lower().endswith(".ds_store"):
312-
# continue
313-
314310
# Read JSON record file
315311
if self.data_format & self._FORMAT_JSON:
316312
try:

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.8-minor.2"
15-
__build__ = 0x000030
14+
__version__ = "0.0.9"
15+
__build__ = 0x000031
1616
__author__ = "Anton Sychev"
1717
__author_email__ = "[email protected]"
1818
__copyright__ = "Copyright Simon Riget"

0 commit comments

Comments
 (0)