From 4f14f227d19f89364681dff4c14d98f59e544aae Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Wed, 6 Dec 2023 05:29:35 +0100 Subject: [PATCH] Updated version (#749) --- config/dpkg/changelog | 4 ++-- dfvfs/__init__.py | 2 +- setup.cfg | 3 ++- utils/update_release.sh | 3 +++ 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/config/dpkg/changelog b/config/dpkg/changelog index 3665f0f3..4927fce1 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -dfvfs (20230531-1) unstable; urgency=low +dfvfs (20231205-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Wed, 31 May 2023 18:17:37 +0200 + -- Log2Timeline maintainers Tue, 05 Dec 2023 06:14:28 +0100 diff --git a/dfvfs/__init__.py b/dfvfs/__init__.py index 797ebcd4..ac552df2 100644 --- a/dfvfs/__init__.py +++ b/dfvfs/__init__.py @@ -6,4 +6,4 @@ storage media types and file formats. """ -__version__ = '20230531' +__version__ = '20231205' diff --git a/setup.cfg b/setup.cfg index 7d4fb92e..3e909d95 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,9 @@ [metadata] name = dfvfs -version = 20230506 +version = 20231205 description = Digital Forensics Virtual File System (dfVFS). long_description = dfVFS, or Digital Forensics Virtual File System, provides read-only access to file-system objects from various storage media types and file formats. The goal of dfVFS is to provide a generic interface for accessing file-system objects, for which it uses several back-ends that provide the actual implementation of the various storage media types, volume systems and file systems. +long_description_content_type = text/plain url = https://github.com/log2timeline/dfvfs maintainer = Log2Timeline maintainers maintainer_email = log2timeline-maintainers@googlegroups.com diff --git a/utils/update_release.sh b/utils/update_release.sh index 26f5252a..ac492e91 100755 --- a/utils/update_release.sh +++ b/utils/update_release.sh @@ -12,6 +12,9 @@ DPKG_DATE=`date -R` # Update the Python module version. sed "s/__version__ = '[0-9]*'/__version__ = '${VERSION}'/" -i dfvfs/__init__.py +# Update the version in the setuptools configuration. +sed "s/version = [0-9]*/version = ${VERSION}/" -i setup.cfg + # Update the version in the dpkg configuration files. cat > config/dpkg/changelog << EOT dfvfs (${VERSION}-1) unstable; urgency=low