diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f8350ea556d710d6b9f17cb76f64631412c268..2172ea15043615dc90f61f0d34b5928c76d7283a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## ### Added ### -- `check_reference_field` function to check whether entities with provided ids - exits (for example when importing data from a table) -- added the `datatypes` argument to `TableImporter` for columns that do not - need a special conversion function ### Changed ### @@ -22,6 +18,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security ### +## [0.3.1] - 2021-12-06 ## + +### Added ### +- `check_reference_field` function to check whether entities with provided ids + exits (for example when importing data from a table) +- added the `datatypes` argument to `TableImporter` for columns that do not + need a special conversion function + ## [0.3.0] - 2021-11-02 ## ### Added ### diff --git a/setup.py b/setup.py index 81695d77156a2225b12cb67b4c9d8a4677de5bb5..8a2dcee8d0f4fb80986efa99d91176e653993c45 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ from setuptools import find_packages, setup MAJOR = 0 MINOR = 3 -MICRO = 1 +MICRO = 2 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 ISRELEASED = False