diff --git a/CHANGELOG.md b/CHANGELOG.md index d1d4623..b62c126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,4 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.3.0] + +- Description parser is now more generic and parses a list of meta informations. +- Added support for skip directive when parsing meta information. + +# [v0.2.0] + - Remove `logging` module and move to more pythonic logging usage. \ No newline at end of file diff --git a/fsfwgen/__init__.py b/fsfwgen/__init__.py index 752cd3b..0c3d023 100644 --- a/fsfwgen/__init__.py +++ b/fsfwgen/__init__.py @@ -1,5 +1,5 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" VERSION_MAJOR = 0 -VERSION_MINOR = 1 +VERSION_MINOR = 3 VERSION_REVISION = 0