Skip to content
Snippets Groups Projects
Commit dc059561 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

REL: release 0.4.0

parent 959fccdd
No related branches found
No related tags found
No related merge requests found
Pipeline #21344 passed
......@@ -8,6 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
### Changed ###
### Deprecated ###
### Removed ###
### Fixed ###
### Security ###
## [0.4.0] - 2022-04-05 ##
### Added ###
- CFood that creates a Record for each line in a csv file
- `generic_analysis.py` allows to easily call scripts to perform analyses in
server side scripting [EXPERIMENTAL]
......
# Features
## Stable
To be filled.
## Experimental
- `generic_analysis.py` allows to easily call scripts to perform analyses in
server side scripting
- Models parser can import from Json Schema files:
`models.parser.parse_model_from_json_schema(...)`. See the documentation of
`models.parser.JsonSchemaParser` for the limitations of the current
implementation.
......@@ -46,8 +46,8 @@ from setuptools import find_packages, setup
########################################################################
MAJOR = 0
MINOR = 3
MICRO = 2
MINOR = 4
MICRO = 0
PRE = "" # e.g. rc0, alpha.1, 0.beta-23
ISRELEASED = False
......
......@@ -27,9 +27,9 @@ copyright = '2021, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.3.2'
version = '0.4.0'
# The full version, including alpha/beta/rc tags
release = '0.3.2'
release = '0.4.0'
# -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment