diff --git a/CHANGELOG.md b/CHANGELOG.md index 938fb7e..020ea5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v1.4.0 (2022-08-29) + +### Feat + +- support multiprocessing schedulers (#88) + +### Fix + +- add high level graph support (#92) + ## v1.3.0 (2022-06-16) ### Feat diff --git a/pyproject.toml b/pyproject.toml index a08adec..d1c95ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" # https://python-poetry.org/docs/pyproject/ [tool.poetry] name = "graphchain" -version = "1.3.0" +version = "1.4.0" description = "An efficient cache for the execution of dask graphs." authors = ["Laurent Sorber "] readme = "README.md" @@ -17,7 +17,7 @@ repository = "https://github.com/radix-ai/graphchain" bump_message = "bump(release): v$current_version → v$new_version" tag_format = "v$version" update_changelog_on_bump = true -version = "1.3.0" +version = "1.4.0" version_files = ["pyproject.toml:version"] # https://python-poetry.org/docs/dependency-specification/