From b171dff42a759cab7338cb053ff2f7736938e567 Mon Sep 17 00:00:00 2001 From: atingber Date: Wed, 13 Nov 2024 10:18:40 +0100 Subject: [PATCH] prep release --- release_notes.md | 14 ++++++++++++++ setup.py | 6 +++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/release_notes.md b/release_notes.md index ff20c13..8dc4af2 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,5 +1,19 @@ ## scenariogeneration release notes +### 2024-11-13 Version 0.14.8 + +- New features + - Length parameter for signal objects + - Information about road and junction IDs in AssertionError + - xmlschema >= 3.3.1 +- Bugfixes + - fix lane link IDs + - fix esmini runner replayer window size handling + - fix coefficient value in lanewidth entry +- IMPORTANT! + STD_ROADMARK_\ has now been depricated and replaced with std_roadmark_\. + Please replace all references of constants to their function counterparts. + ### 2024-09-02 Version 0.14.7 - New features diff --git a/setup.py b/setup.py index 79d0c0a..41d65d5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="scenariogeneration", - version="0.14.7", + version="0.14.8", license="MPL-2.0", author="Mikael Andersson, Irene Natale, Andreas Tingberg", author_email="andmika@gmail.com", @@ -13,10 +13,10 @@ long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/pyoscx/scenariogeneration", - download_url="https://github.com/pyoscx/scenariogeneration/archive/v0.14.7.tar.gz", + download_url="https://github.com/pyoscx/scenariogeneration/archive/v0.14.8.tar.gz", packages=setuptools.find_packages(), keywords=["OpenDRIVE", "OpenSCENARIO", "xml"], - install_requires=["numpy", "scipy", "pyclothoids", "xmlschema==3.3.1", "lxml"], + install_requires=["numpy", "scipy", "pyclothoids", "xmlschema>=3.3.1", "lxml"], classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6",