From 4e87bc9cee55c0e9d0a6b14312600a337b3c73e1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 25 Nov 2022 01:25:14 +0000 Subject: [PATCH] 0.1.2 Automatically generated by python-semantic-release --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/uri_pathlib_factory/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f6dc6..c4cf9af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v0.1.2 (2022-11-25) +### Fix +* Bump python-semantic-release gh action ([`0aef90c`](https://github.com/petrus-v/uri-pathlib-factory/commit/0aef90c4e7bc8289fabc45492b5989da254dd288)) +* Try avoid circular import while register plugin ([`345fa6e`](https://github.com/petrus-v/uri-pathlib-factory/commit/345fa6ece9aebadf509a5babecc83d80aba65bec)) + ## v0.1.1 (2022-11-24) ### Fix * Ci, bump to latest setup-python version (v4) ([`8d91516`](https://github.com/petrus-v/uri-pathlib-factory/commit/8d9151627f8a7b0247c0e97af8c970b27fc8dabd)) diff --git a/pyproject.toml b/pyproject.toml index d25ff07..3e166c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "uri-pathlib-factory" -version = "0.1.1" +version = "0.1.2" description = "A factory to instantiate Path's like object that are using Pathlib interface." authors = ["Pierre Verkest "] license = "Apache Software License 2.0" diff --git a/src/uri_pathlib_factory/__init__.py b/src/uri_pathlib_factory/__init__.py index 03356a1..3517c91 100644 --- a/src/uri_pathlib_factory/__init__.py +++ b/src/uri_pathlib_factory/__init__.py @@ -2,7 +2,7 @@ from .main import PathFactory, PurePathFactory, load_pathlib_monkey_patch -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = [ "load_pathlib_monkey_patch",