From cbc62942a084f016771031bb58dd457127f88498 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 23 Feb 2022 08:52:23 +0000 Subject: [PATCH] 0.1.11 Automatically generated by python-semantic-release --- CHANGELOG.md | 5 +++++ cc_codechecker/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1783854..adc524c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v0.1.11 (2022-02-23) +### Fix +* Move yaml read outside get_configuration function ([`54b8f1d`](https://github.com/Daniele-Tentoni/cc-codechecker/commit/54b8f1de0e679ec1d2d5a37babbdad7366dff966)) +* Project version now return the real truthy version ([`8000464`](https://github.com/Daniele-Tentoni/cc-codechecker/commit/800046439311ca84d2e04f7fe417edb909db4675)) + ## v0.1.10 (2022-02-11) ### Fix * Use step env ([`48ee29a`](https://github.com/Daniele-Tentoni/cc-codechecker/commit/48ee29aba0ebc1921729b9c1dea33a12e4ec1e69)) diff --git a/cc_codechecker/__init__.py b/cc_codechecker/__init__.py index ce8563c..a05782f 100644 --- a/cc_codechecker/__init__.py +++ b/cc_codechecker/__init__.py @@ -5,4 +5,4 @@ """Coding Challenge Code Checker""" from .codechecker import main -__version__ = "0.1.10" +__version__ = "0.1.11" diff --git a/pyproject.toml b/pyproject.toml index aa091db..f069201 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cc-codechecker" -version = "0.1.10" +version = "0.1.11" description = "Facilities to manage coding challenges." authors = ["Daniele Tentoni "] keywords = ['coding', 'challenge', 'yaml', 'project', 'facilities']