From 3c1143144370f76676a35873718a5edf2868e5b6 Mon Sep 17 00:00:00 2001 From: Anton Sychev Date: Wed, 10 Jan 2024 14:18:02 +0100 Subject: [PATCH] hotfix: remove small part its prevent show content --- CITATION.cff | 2 +- pyproject.toml | 2 +- src/Rocketstore/Rocketstore.py | 4 ++-- src/Rocketstore/__version__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 4fcdce8..b81480a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,4 +17,4 @@ keywords: - file - rocket license: MIT -version: 0.0.8 +version: 0.0.8-monor.2 diff --git a/pyproject.toml b/pyproject.toml index 583c6c8..d539114 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Rocket-Store" -version = "0.0.8" +version = "0.0.8-minor.2" authors = [ { name="Anton Sychev", email="anton@sychev.xyz" }, ] diff --git a/src/Rocketstore/Rocketstore.py b/src/Rocketstore/Rocketstore.py index 1bd84e0..00c25d6 100644 --- a/src/Rocketstore/Rocketstore.py +++ b/src/Rocketstore/Rocketstore.py @@ -308,8 +308,8 @@ def get( file_name = os.path.join(scan_dir, keys[i]) # Skip .DS_Store files - if not file_name.lower().endswith(".ds_store"): - continue + # if not file_name.lower().endswith(".ds_store"): + # continue # Read JSON record file if self.data_format & self._FORMAT_JSON: diff --git a/src/Rocketstore/__version__.py b/src/Rocketstore/__version__.py index 099a120..8b1e1b6 100644 --- a/src/Rocketstore/__version__.py +++ b/src/Rocketstore/__version__.py @@ -11,7 +11,7 @@ __title__ = "Rocketstore" __description__ = "Rocket Store (Python) - Fast and Simple Database" __url__ = "https://github.com/klich3/rocket-store-python" -__version__ = "0.0.8" +__version__ = "0.0.8-minor.2" __build__ = 0x000030 __author__ = "Anton Sychev" __author_email__ = "anton@sychev.xyz"