diff --git a/CHANGES b/CHANGES index ac5ce49c..df8ac356 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,12 @@ $ pip install --user --upgrade --pre libvcs +## libvcs 0.32.2 (2024-10-12) + +### Bug fixes + +- Pytest fixtures: `git_repo` and `hg_repo`: Set configuration for both fixtures. + ## libvcs 0.32.1 (2024-10-12) ### Revert accidental commit diff --git a/pyproject.toml b/pyproject.toml index 2bf92304..412c8766 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libvcs" -version = "0.32.1" +version = "0.32.2" description = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." license = "MIT" authors = ["Tony Narlock "] diff --git a/src/libvcs/__about__.py b/src/libvcs/__about__.py index 2284b413..dc635b5c 100644 --- a/src/libvcs/__about__.py +++ b/src/libvcs/__about__.py @@ -3,7 +3,7 @@ __title__ = "libvcs" __package_name__ = "libvcs" __description__ = "Lite, typed, python utilities for Git, SVN, Mercurial, etc." -__version__ = "0.32.1" +__version__ = "0.32.2" __author__ = "Tony Narlock" __github__ = "https://github.com/vcs-python/libvcs" __docs__ = "https://libvcs.git-pull.com"