Skip to content

Commit

Permalink
Changes for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 27, 2023
1 parent 3414b3c commit f0e1ec1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dtfabric (20230520-1) unstable; urgency=low
dtfabric (20231227-1) unstable; urgency=low

* Auto-generated

-- Joachim Metz <[email protected]> Sat, 20 May 2023 05:28:59 +0200
-- Joachim Metz <[email protected]> Wed, 27 Dec 2023 07:02:16 +0100
2 changes: 1 addition & 1 deletion dtfabric/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
"""Data type fabric."""

__version__ = '20230520'
__version__ = '20231227'
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[metadata]
name = dtfabric
version = 20230506
version = 20231227
description = Data type fabric (dtfabric)
long_description = dtFabric, or data type fabric, is a project to manage data types and structures, as used in the libyal projects.
long_description_content_type = text/plain
url = https://github.com/libyal/dtfabric
maintainer = Joachim Metz
maintainer_email = [email protected]
Expand All @@ -22,6 +23,8 @@ package_dir =
dtfabric = dtfabric
packages = find:
python_requires = >=3.7
scripts =
scripts/validate-definitions.py

[options.packages.find]
exclude =
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 dtfabric/__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
dtfabric (${VERSION}-1) unstable; urgency=low
Expand Down

0 comments on commit f0e1ec1

Please sign in to comment.