diff --git a/CHANGELOG.md b/CHANGELOG.md index a2db07c..f190d54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [v0.3.0](https://github.com/eonu/feud/releases/tag/v0.3.0) - 2024-01-03 + +### Bug Fixes + +- check `__main__` first for module discovery ([#131](https://github.com/eonu/feud/issues/131)) +- fix `click` & `pydantic` min. versions + fix `feud.typing` versions ([#133](https://github.com/eonu/feud/issues/133)) +- define `__all__` for `feud.typing` module ([#134](https://github.com/eonu/feud/issues/134)) + +### Documentation + +- remove click admonition from `README.md` ([#129](https://github.com/eonu/feud/issues/129)) +- remove headings from projects table ([#137](https://github.com/eonu/feud/issues/137)) + +### Features + +- define `feud.click.is_rich` for checking `rich-click` install ([#132](https://github.com/eonu/feud/issues/132)) +- add command and option sections ([#136](https://github.com/eonu/feud/issues/136)) + ## [v0.2.0](https://github.com/eonu/feud/releases/tag/v0.2.0) - 2023-12-27 ### Features diff --git a/docs/source/conf.py b/docs/source/conf.py index eb0393d..22d28d0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,7 +20,7 @@ project = "feud" copyright = "2023-2025, Feud Developers" # noqa: A001 author = "Edwin Onuonga (eonu)" -release = "0.2.0" +release = "0.3.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/feud/version.py b/feud/version.py index fc687f8..25b0fca 100644 --- a/feud/version.py +++ b/feud/version.py @@ -33,7 +33,7 @@ __all__ = ["VERSION", "version_info"] -VERSION = "0.2.0" +VERSION = "0.3.0" def version_info() -> str: diff --git a/pyproject.toml b/pyproject.toml index 9a0fd26..be20560 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "feud" -version = "0.2.0" +version = "0.3.0" license = "MIT" authors = ["Edwin Onuonga "] maintainers = ["Edwin Onuonga "]