From 663b9a5624f07b1d883e9106ffef8130956e2dbd Mon Sep 17 00:00:00 2001 From: cogu Date: Sun, 11 Feb 2024 19:10:47 +0100 Subject: [PATCH] Prepare release of v0.5.2 --- CHANGELOG.md | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29d2ff2..e48ec3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The first name in a bullet point below is the Python class name while the second Elements marked as `collectable` means that they can be added directly to a package. Non-collectable elements are various sub-elements to collectable elements. -## Unreleased +## [v0.5.2] - 2024-02-11 ### Added diff --git a/pyproject.toml b/pyproject.toml index aa9b761..6a7ae32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,12 @@ [project] name = "autosar" -version = "0.5.2a1" +version = "0.5.2" description = "A set of Python modules for working with AUTOSAR XML files" readme = "README.md" requires-python = ">=3.10" dependencies = [ - "lxml" + "lxml", + 'tomli >= 1.1.0; python_version < "3.11"' ] [build-system]