From 2b2855713e8721bf04f3ae130e6cc78ace52acbf Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 17 Oct 2024 20:32:09 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.4.5=20=E2=86=92=201.4.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ omnitils/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d58d51..85bda4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.4.6 (2024-10-17) + +### Fix + +- **log**: No longer inject message during formatting step, ensure logger allows formatting tags by default +- **github**: Ensure correct repository name is provided in the return Path when downloading a repository + ## 1.4.5 (2024-10-16) ### Fix diff --git a/omnitils/__init__.py b/omnitils/__init__.py index 45dd1bd..e8795a2 100644 --- a/omnitils/__init__.py +++ b/omnitils/__init__.py @@ -4,4 +4,4 @@ * Copyright (c) Hexproof Systems * LICENSE: Mozilla Public License 2.0 """ -__version__ = '1.4.5' +__version__ = '1.4.6' diff --git a/pyproject.toml b/pyproject.toml index f521984..cd66173 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "omnitils" -version = "1.4.5" +version = "1.4.6" description = "Universal reusable Python utils for the modern human." authors = ["Investigamer "] license = "MPL-2.0" @@ -58,7 +58,7 @@ mypy = "^1.8.0" pytest = "^8.0.0" [tool.commitizen] -version = "1.4.5" +version = "1.4.6" encoding = "utf-8" tag_format = "$major.$minor.$patch" update_changelog_on_bump = true