Skip to content

Commit

Permalink
Changes for release (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Mar 1, 2024
1 parent 2371203 commit 1b29dfa
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dfimagetools (20240211-1) unstable; urgency=low
dfimagetools (20240301-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <log2timeline-maintainers@googlegroups.com> Sun, 11 Feb 2024 08:09:36 +0100
-- Log2Timeline maintainers <log2timeline-maintainers@googlegroups.com> Fri, 01 Mar 2024 10:18:45 +0100
2 changes: 1 addition & 1 deletion dfimagetools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"""Collection of tools to process storage media images."""


__version__ = '20240211'
__version__ = '20240301'
2 changes: 1 addition & 1 deletion dfimagetools/scripts/extract_data_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def Main():
print('')
return 1

except KeyboardInterrupt:
except (KeyboardInterrupt, dfvfs_errors.UserAbort):
print('Aborted by user.', file=sys.stderr)
print('')
return 1
Expand Down
2 changes: 1 addition & 1 deletion dfimagetools/scripts/list_file_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def Main():
print('')
return 1

except KeyboardInterrupt:
except (KeyboardInterrupt, dfvfs_errors.UserAbort):
print('Aborted by user.', file=sys.stderr)
print('')
return 1
Expand Down
2 changes: 1 addition & 1 deletion dfimagetools/scripts/map_extents.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def Main():
print(f'[ERROR] {exception!s}', file=sys.stderr)
return 1

except KeyboardInterrupt:
except (KeyboardInterrupt, dfvfs_errors.UserAbort):
print('Aborted by user.', file=sys.stderr)
return 1

Expand Down
2 changes: 1 addition & 1 deletion dfimagetools/scripts/recursive_hasher.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def Main():
print('')
return 1

except KeyboardInterrupt:
except (KeyboardInterrupt, dfvfs_errors.UserAbort):
print('Aborted by user.', file=sys.stderr)
print('')
return 1
Expand Down
3 changes: 2 additions & 1 deletion dfimagetools/scripts/source_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import sys

from dfvfs.helpers import command_line as dfvfs_command_line
from dfvfs.lib import errors as dfvfs_errors

from dfimagetools import source_analyzer
from dfimagetools.helpers import backend
Expand Down Expand Up @@ -70,7 +71,7 @@ def Main():

print('Completed.')

except KeyboardInterrupt:
except (KeyboardInterrupt, dfvfs_errors.UserAbort):
print('Aborted by user.')
return 1

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dfimagetools
version = 20240229
version = 20240301
description = Storage media image tools
long_description = Collection of tools to process storage media images.
long_description_content_type = text/plain
Expand Down

0 comments on commit 1b29dfa

Please sign in to comment.