diff --git a/CHANGELOG.md b/CHANGELOG.md index 26b9927..8067ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.15] - 2023-02-27 + +### Added + +- Add __repr__ to data types of Record, Enum and IList + +### Changed + +### Fixed + +- Fix incomplete json parsing of records due to nested typing.ForwardRefs in field annotations. + ## [0.3.14] - 2023-02-27 ### Added diff --git a/docs/change-log.md b/docs/change-log.md index c0df626..f5f5f6f 100644 --- a/docs/change-log.md +++ b/docs/change-log.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.15] - 2023-02-27 + +### Added + +- Add __repr__ to data types of Record, Enum and IList + +### Changed + +### Fixed + +- Fix incomplete json parsing of records due to nested typing.ForwardRefs in field annotations. + ## [0.3.14] - 2023-02-27 ### Added diff --git a/pyproject.toml b/pyproject.toml index 983b58f..d9edfaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "funml" -version = "0.3.14" +version = "0.3.15" description = "A collection of utilities to help write python as though it were an ML-kind of functional language like OCaml" authors = ["Martin "] readme = "README.md"