Skip to content

Commit

Permalink
Merge branch 'release/v0.0.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
klich3 committed Jan 10, 2024
2 parents e9615a8 + 5742f70 commit 3f55b82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 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-monor.2
version: 0.0.9
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-minor.2"
version = "0.0.9"
authors = [
{ name="Anton Sychev", email="[email protected]" },
]
Expand Down
4 changes: 0 additions & 4 deletions src/Rocketstore/Rocketstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/Rocketstore/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"
__copyright__ = "Copyright Simon Riget"

0 comments on commit 3f55b82

Please sign in to comment.