Skip to content

Commit e9615a8

Browse files
committed
Merge branch 'hotfix/v0.0.8-minor.2'
2 parents e1019cf + 3c11431 commit e9615a8

File tree

4 files changed

+5
-5
lines changed

4 files changed

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

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

src/Rocketstore/Rocketstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ def get(
308308
file_name = os.path.join(scan_dir, keys[i])
309309

310310
# Skip .DS_Store files
311-
if not file_name.lower().endswith(".ds_store"):
312-
continue
311+
# if not file_name.lower().endswith(".ds_store"):
312+
# continue
313313

314314
# Read JSON record file
315315
if self.data_format & self._FORMAT_JSON:

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.8"
14+
__version__ = "0.0.8-minor.2"
1515
__build__ = 0x000030
1616
__author__ = "Anton Sychev"
1717
__author_email__ = "[email protected]"

0 commit comments

Comments
 (0)