From 1c280444d9326e7e23198a5db8e8b084ba5715bd Mon Sep 17 00:00:00 2001 From: Claas Date: Tue, 9 Jan 2024 18:03:07 +0100 Subject: [PATCH 1/4] dependencies: updated to dictIO>=0.3.1 (from dictIO>=0.2.9) --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 556bbf09..c1bc20a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,6 @@ pandas>=2.1 matplotlib>=3.8 graphviz>=0.20 -dictIO>=0.2.9 +dictIO>=0.3.1 # ../dictIO diff --git a/setup.cfg b/setup.cfg index 48f83d02..ffa29bb4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -44,7 +44,7 @@ install_requires = pandas>=2.1 matplotlib>=3.8 graphviz>=0.20 - dictIO>=0.2.9 + dictIO>=0.3.1 # dictIO @ file:../dictIO [options.packages.find] From 232fffe23adccb1f67abcf9700afa5437fb4afc6 Mon Sep 17 00:00:00 2001 From: Claas Date: Tue, 9 Jan 2024 18:10:54 +0100 Subject: [PATCH 2/4] updated CHANGELOG.md --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28c26e9b..0d514e0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e * -/- +## [0.2.12] - 2024-01-09 + +Maintenance Release + +### Dependencies + +* Updated to dictIO>=0.3.1 (from dictIO>=0.2.9) +* Updated other dependencies to latest versions + ## [0.2.11] - 2023-09-25 @@ -333,7 +342,8 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e * Added support for Python 3.10 -[unreleased]: https://github.com/dnv-opensource/ospx/compare/v0.2.11...HEAD +[unreleased]: https://github.com/dnv-opensource/ospx/compare/v0.2.12...HEAD +[0.2.12]: https://github.com/dnv-opensource/ospx/compare/v0.2.11...v0.2.12 [0.2.11]: https://github.com/dnv-opensource/ospx/compare/v0.2.10...v0.2.11 [0.2.10]: https://github.com/dnv-opensource/ospx/compare/v0.2.9...v0.2.10 [0.2.9]: https://github.com/dnv-opensource/ospx/compare/v0.2.8...v0.2.9 From 82ef196052d22f45ad0c0423b4c49d6b857d640a Mon Sep 17 00:00:00 2001 From: Claas Date: Tue, 9 Jan 2024 18:12:03 +0100 Subject: [PATCH 3/4] README and LICENSE: updated '2023' to '2024' --- LICENSE | 2 +- README.md | 4 ++-- docs/source/conf.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index c8d9fe4c..90b0cc37 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) +Copyright (c) 2024 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 88248ada..e14abb76 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ _For a detailed documentation of the dictIO dict file format used by farn, see [ ## Meta -Copyright (c) 2023 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) +Copyright (c) 2024 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) Frank Lumpitzsch – [@LinkedIn](https://www.linkedin.com/in/frank-lumpitzsch-23013196/) – frank.lumpitzsch@dnv.com @@ -137,4 +137,4 @@ For your contribution, please make sure you follow the [STYLEGUIDE](STYLEGUIDE.m [dictIO_docs]: https://dnv-opensource.github.io/dictIO/README.html [ospx_docs]: https://dnv-opensource.github.io/ospx/README.html [farn_docs]: https://dnv-opensource.github.io/farn/README.html -[osp_docs]: https://open-simulation-platform.github.io/ \ No newline at end of file +[osp_docs]: https://open-simulation-platform.github.io/ diff --git a/docs/source/conf.py b/docs/source/conf.py index 1e1cf386..35e26514 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -18,7 +18,7 @@ # -- Project information ----------------------------------------------------- project = "ospx" -copyright = "2023, DNV. Frank Lumpitzsch, Claas Rostock, Seung Hyeon Yoo" +copyright = "2024, DNV. Frank Lumpitzsch, Claas Rostock, Seung Hyeon Yoo" author = "Frank Lumpitzsch, Claas Rostock, Seung Hyeon Yoo" # The full version, including alpha/beta/rc tags From 2b2016e3b2ae2a64e5c30abe1e7e6fe7fb50fc1d Mon Sep 17 00:00:00 2001 From: Claas Date: Tue, 9 Jan 2024 18:13:04 +0100 Subject: [PATCH 4/4] bumped version number to 0.2.12 --- docs/source/conf.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 35e26514..0b12f957 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = "Frank Lumpitzsch, Claas Rostock, Seung Hyeon Yoo" # The full version, including alpha/beta/rc tags -release = "0.2.11" +release = "0.2.12" # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index ffa29bb4..a8dac3e9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ospx -version = 0.2.11 +version = 0.2.12 summary = Extension package to farn, adding support to build OSP simulation cases using FMUs description = Extension package to farn , adding support to build OSP (co-)simulation cases using functional mockup units (FMUs). long_description = file: README.md