diff --git a/CITATION.cff b/CITATION.cff index b81480a..e6bf8ec 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,4 +17,4 @@ keywords: - file - rocket license: MIT -version: 0.0.8-monor.2 +version: 0.0.9 diff --git a/pyproject.toml b/pyproject.toml index d539114..89dd130 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Rocket-Store" -version = "0.0.8-minor.2" +version = "0.0.9" authors = [ { name="Anton Sychev", email="anton@sychev.xyz" }, ] diff --git a/src/Rocketstore/Rocketstore.py b/src/Rocketstore/Rocketstore.py index 00c25d6..611000b 100644 --- a/src/Rocketstore/Rocketstore.py +++ b/src/Rocketstore/Rocketstore.py @@ -307,10 +307,6 @@ def get( for i in range(len(keys)): file_name = os.path.join(scan_dir, keys[i]) - # Skip .DS_Store files - # if not file_name.lower().endswith(".ds_store"): - # continue - # Read JSON record file if self.data_format & self._FORMAT_JSON: try: diff --git a/src/Rocketstore/__version__.py b/src/Rocketstore/__version__.py index 8b1e1b6..0d43806 100644 --- a/src/Rocketstore/__version__.py +++ b/src/Rocketstore/__version__.py @@ -11,8 +11,8 @@ __title__ = "Rocketstore" __description__ = "Rocket Store (Python) - Fast and Simple Database" __url__ = "https://github.com/klich3/rocket-store-python" -__version__ = "0.0.8-minor.2" -__build__ = 0x000030 +__version__ = "0.0.9" +__build__ = 0x000031 __author__ = "Anton Sychev" __author_email__ = "anton@sychev.xyz" __copyright__ = "Copyright Simon Riget"