Skip to content

Commit

Permalink
Versioning and future todo
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjunnebo committed Dec 4, 2024
1 parent 6277412 commit 589b7c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TACA Version Log

## 20241204.1
Add support for staging ONT data on Miarka

## 20241127.1

Add support for organising ONT data on Miarka
Expand Down
2 changes: 1 addition & 1 deletion taca/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Main TACA module"""

__version__ = "1.2.0"
__version__ = "1.3.0"
2 changes: 1 addition & 1 deletion taca/delivery/delivery_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def make_staging_path(self):
)
try:
os.makedirs(self.project_staging_path)
except OSError as e:
except OSError as e: # future todo: cleanup failed staging and handle rerunning staging with new data
logger.error(
f"An error occurred while setting up the staging directory {self.project_staging_path}. Aborting."
)
Expand Down

0 comments on commit 589b7c0

Please sign in to comment.