From 3a7e847f3e334544cd51f07a8c52cc1c066d1c6c Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 16 Feb 2023 22:12:17 +0300 Subject: [PATCH] Bump to v0.3.9 --- CHANGELOG.md | 10 ++++++++++ docs/change-log.md | 10 ++++++++++ pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d840aa7..b3da31d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.9] - 2023-02-16 + +### Added + +- Extend types in record to handle "..." and "bool | None" etc. + +### Changed + +### Fixed + ## [0.3.8] - 2023-02-15 ### Added diff --git a/docs/change-log.md b/docs/change-log.md index f9c15a7..981a3e6 100644 --- a/docs/change-log.md +++ b/docs/change-log.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.9] - 2023-02-16 + +### Added + +- Extend types in record to handle "..." and "bool | None" etc. + +### Changed + +### Fixed + ## [0.3.8] - 2023-02-15 ### Added diff --git a/pyproject.toml b/pyproject.toml index c543005..28a2dc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "funml" -version = "0.3.8" +version = "0.3.9" 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"