diff --git a/docs/changelog.md b/docs/changelog.md index e6d5b61f..608a9875 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,10 @@ -## v0.2.4 (unreleased) +## v0.2.4 (2018-05-22) - `NEW` Remaining FMI functions added +- `NEW` More options for command line interface +- `NEW` More elements added to SSP parser +- `NEW` Polished GUI +- `FIXED` No more warning when starting GUI ## v0.2.3 (2018-04-11) diff --git a/fmpy/__init__.py b/fmpy/__init__.py index c90ea356..51477c44 100644 --- a/fmpy/__init__.py +++ b/fmpy/__init__.py @@ -5,7 +5,7 @@ from ctypes import * import _ctypes -__version__ = '0.2.3' +__version__ = '0.2.4' # determine the platform diff --git a/setup.py b/setup.py index e1e4c148..0726ab6d 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ extras_require['complete'] = sorted(set(sum(extras_require.values(), []))) setup(name='FMPy', - version='0.2.3', + version='0.2.4', description="Simulate Functional Mock-up Units (FMUs) in Python", long_description=long_description, author="Torsten Sommer",