Browse Source

Stormpy version 1.6.0

refactoring
Matthias Volk 5 years ago
parent
commit
45d8d978f4
  1. 23
      CHANGELOG.md
  2. 2
      lib/stormpy/_version.py
  3. 2
      setup.py

23
CHANGELOG.md

@ -1,13 +1,32 @@
Changelog
=============
Version 1.4.x
Version 1.6.x
-------------
### Version 1.4.2 (under development)
### Version 1.6.0 (2020/06)
Requires storm version >= 1.6.0 and pycarl version >= 2.0.4
- Adaptions to changes in Storm: most notably state valuations
- Support for GSPNs: parsing, exploring, building
- Support for matrix building
- Extended expression operators with {conjunction, disjunction}
- Added information collector to extract information from jani models
- Bindings for elimination of chains of non-Markovian states
Version 1.5.x
-------------
### Version 1.5.1
Skipped for compatibility with Storm.
### Version 1.5.0
Skipped for compatibility with Storm.
Version 1.4.x
-------------
### Version 1.4.1 (2019/12)
Requires storm version >= 1.4.1 and pycarl version >= 2.0.4

2
lib/stormpy/_version.py

@ -1 +1 @@
__version__ = "1.4.1"
__version__ = "1.6.0"

2
setup.py

@ -14,7 +14,7 @@ if sys.version_info[0] == 2:
sys.exit('Sorry, Python 2.x is not supported')
# Minimal storm version required
storm_min_version = "1.5.2"
storm_min_version = "1.6.0"
# Get the long description from the README file
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:

Loading…
Cancel
Save