From c35938512d1b9e1d36fb92a5e9ec34c4c2ef6bd9 Mon Sep 17 00:00:00 2001 From: eddiebergman Date: Mon, 13 Nov 2023 19:42:02 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.9.0=20=E2=86=92=200.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 4 ++-- src/amltk/__version__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaeebd7d..e8b563ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.10.0 (2023-11-13) + +### Feat + +- **Pynisher**: add for introspection of capability + +### Fix + +- Add `__main__` gaurd to examples + ## 0.9.0 (2023-11-13) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 5cddf4ce..d1baf410 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "amltk" -version = "0.9.0" +version = "0.10.0" dependencies = [ "typing_extensions", # Better typing "more_itertools", # Better iteration @@ -102,7 +102,7 @@ exclude_lines = [ [tool.commitizen] name = "cz_conventional_commits" -version = "0.9.0" +version = "0.10.0" tag_format = "$major.$minor.$patch$prerelease" update_changelog_on_bump = true version_files = ["pyproject.toml:version", "src/amltk/__version__.py"] diff --git a/src/amltk/__version__.py b/src/amltk/__version__.py index a3109fe9..5faa1a44 100644 --- a/src/amltk/__version__.py +++ b/src/amltk/__version__.py @@ -1,3 +1,3 @@ from __future__ import annotations -version = "0.9.0" +version = "0.10.0"