Skip to content

Commit

Permalink
bumped version number to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Claas committed Dec 1, 2022
1 parent 1fd340a commit 9093200
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 5 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,33 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
* --


## [0.2.5] - 2022-12-01

### Changed

* variable.py: get_fmi_data_type():
* Removed the elif branch 'isinstance(arg, Sequence)'. <br>
It caused problems as it falsely returned the FMI type 'Enumeration' also for strings. <br>
The respective elif branch is for the time being commented out. <br>
However, a proper solution is needed as soon as xs:enumeration is used in an OSP case. <br>
The problem is registered as [Issue #5](https://github.com/dnv-opensource/ospx/issues/5)
* Code formatting: Changed from yapf to black
* STYLEGUIDE.md : Adjusted to match black formatting
* VS Code settings: Updated to use black as formatter
* requirements.txt: Updated dependencies to their most recent versions
* GitHub actions (yml files): Updated following actions to their most recent versions:
* checkout@v1 -> checkout@v3
* setup-python@v2 -> setup-python@v4
* cache@v2 -> cache@v3

### Added

* watchCosim: Added commandline option --scale <br>
(allows to scale the generated images by a factor)
* Added sourcery configuration (.sourcery.yaml)
* Added py.typed file into the package root folder and included it setup.cfg as package_data


## [0.2.4] - 2022-11-08

### Changed
Expand Down Expand Up @@ -220,7 +247,8 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
* Added support for Python 3.10

<!-- Markdown link & img dfn's -->
[unreleased]: https://github.com/dnv-opensource/ospx/compare/v0.2.4...HEAD
[unreleased]: https://github.com/dnv-opensource/ospx/compare/v0.2.5...HEAD
[0.2.5]: https://github.com/dnv-opensource/ospx/compare/v0.2.4...v0.2.5
[0.2.4]: https://github.com/dnv-opensource/ospx/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/dnv-opensource/ospx/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/dnv-opensource/ospx/compare/v0.2.1...v0.2.2
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Frank Lumpitzsch, Claas Rostock, Seung Hyeon Yoo"

# The full version, including alpha/beta/rc tags
release = "0.2.4"
release = "0.2.5"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ matplotlib>=3.6
graphviz>=0.20

# ../dictIO
dictIO>=0.2.2
dictIO>=0.2.3
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ospx
version = 0.2.4
version = 0.2.5
summary = Extension package to farn, adding support to build OSP simulation cases using FMUs
description = Extension package to farn <https://pypi.org/project/farn>, adding support to build OSP <https://open-simulation-platform.github.io> (co-)simulation cases using functional mockup units (FMUs).
long_description = file: README.md
Expand Down Expand Up @@ -41,7 +41,7 @@ install_requires =
pandas>=1.5
matplotlib>=3.6
graphviz>=0.20
dictIO>=0.2.2
dictIO>=0.2.3
# dictIO @ file:../dictIO

[options.packages.find]
Expand Down

0 comments on commit 9093200

Please sign in to comment.