Skip to content

Commit

Permalink
Updated version (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Dec 5, 2023
1 parent 2fe9c59 commit 892db10
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
add-apt-repository -y ppa:gift/dev
apt-get update -q
apt-get install -y build-essential python3 python3-dev libcreg-python3 libregf-python3 python3-dfdatetime python3-distutils python3-dtfabric python3-pip python3-setuptools python3-yaml python3-wheel
apt-get install -y build-essential python3 python3-dev libcreg-python3 libregf-python3 python3-dfdatetime python3-distutils python3-dtfabric python3-pip python3-setuptools python3-wheel python3-yaml
- name: Run tests
env:
LANG: en_US.UTF-8
Expand Down
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dfwinreg (20221218-1) unstable; urgency=low
dfwinreg (20231205-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <[email protected]> Sun, 18 Dec 2022 13:14:53 +0100
-- Log2Timeline maintainers <[email protected]> Tue, 05 Dec 2023 06:11:59 +0100
2 changes: 1 addition & 1 deletion dfwinreg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
that provides read-only access to Windows Registry objects.
"""

__version__ = '20221218'
__version__ = '20231205'
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ dfdatetime >= 20160814
dtfabric >= 20170524
libcreg-python >= 20210502
libregf-python >= 20201002

3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[metadata]
name = dfwinreg
version = 20230506
version = 20231205
description = Digital Forensics Windows Registry (dfWinReg).
long_description = dfWinReg, or Digital Forensics Windows Registry, provides read-only access to Windows Registry objects. The goal of dfWinReg is to provide a generic interface for accessing Windows Registry objects that resembles the Registry key hierarchy as seen on a live Windows system.
long_description_content_type = text/plain
url = https://github.com/log2timeline/dfwinreg
maintainer = Log2Timeline maintainers
maintainer_email = [email protected]
Expand Down
3 changes: 3 additions & 0 deletions utils/update_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ DPKG_DATE=`date -R`
# Update the Python module version.
sed "s/__version__ = '[0-9]*'/__version__ = '${VERSION}'/" -i dfwinreg/__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
dfwinreg (${VERSION}-1) unstable; urgency=low
Expand Down

0 comments on commit 892db10

Please sign in to comment.