diff --git a/CHANGELOG.md b/CHANGELOG.md index 62105323a81f22594c92601a405e287dc76106ee..e5a7f8f6690bd134422255d43d0b7e3bfba7c347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/FEATURES.md b/FEATURES.md new file mode 100644 index 0000000000000000000000000000000000000000..44b2a5de7b1ff48da8e190a8b0f9a50ef58733cb --- /dev/null +++ b/FEATURES.md @@ -0,0 +1,13 @@ +# 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. diff --git a/setup.py b/setup.py index 98599d9a5ead13520726546c23cbe59c57242fc0..6964fd9c15848efc95f788cd3b4c7476e636abe6 100755 --- a/setup.py +++ b/setup.py @@ -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 diff --git a/src/doc/conf.py b/src/doc/conf.py index 1e07336628b696a95bc821a462f3d78f3ae11df0..5f62cac4bb61282c755cd069aba9b04aa077360b 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -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 ---------------------------------------------------