Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.0.8-minor.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
klich3 committed Jan 10, 2024
2 parents e1019cf + 3c11431 commit e9615a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ keywords:
- file
- rocket
license: MIT
version: 0.0.8
version: 0.0.8-monor.2
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions src/Rocketstore/Rocketstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/Rocketstore/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"
Expand Down

0 comments on commit e9615a8

Please sign in to comment.