From d80257e43151a0b5f01568af51c7577ad2e04c29 Mon Sep 17 00:00:00 2001 From: Mateus Oliveira <66965232+mateusoliveira43@users.noreply.github.com> Date: Sat, 24 Dec 2022 19:49:07 -0300 Subject: [PATCH] docs: version 1.1.3 (#81) --- cly/__init__.py | 2 +- docs/changelog.rst | 17 ++++++++++++++--- pyproject.toml | 2 +- sonar-project.properties | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/cly/__init__.py b/cly/__init__.py index fecc32c..9361458 100644 --- a/cly/__init__.py +++ b/cly/__init__.py @@ -1,4 +1,4 @@ """Create configured argparse's parser.""" # https://github.com/mateusoliveira43/cly -__version__ = "1.1.2" # major.minor.patch +__version__ = "1.1.3" # major.minor.patch diff --git a/docs/changelog.rst b/docs/changelog.rst index d82d9c9..ac09db5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,10 +4,21 @@ Changelog Latest Changes -------------- -- fix: Trigger CI/CD only once after a PR closes. PR `#80 `_ by `@mateusoliveira43 `_. + + +1.1.3 +----- + +Features +++++++++ + - feat: improve README documentation. PR `#79 `_ by `@mateusoliveira43 `_. -- fix: jinja template line break. PR `#75 `_ by `@mateusoliveira43 `_. -- fix: jinja template line break. PR `#74 `_ by `@mateusoliveira43 `_. + +Fixes ++++++ + +- fix: Trigger CI/CD only once after a PR closes. PR `#80 `_ by `@mateusoliveira43 `_. +- fix: jinja template line break. PRs `#75 `_ and `#74 `_ by `@mateusoliveira43 `_. - fix: Remove type ignore comments from code. PR `#73 `_ by `@mateusoliveira43 `_. - fix: CD versioning pipeline permission. PR `#72 `_ by `@mateusoliveira43 `_. diff --git a/pyproject.toml b/pyproject.toml index eaabb9d..3ec0d86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cly" -version = "1.1.2" +version = "1.1.3" description = "CLY?! Template to create Python CLI scripts" authors = ["Mateus Oliveira"] license = "MIT" diff --git a/sonar-project.properties b/sonar-project.properties index 375cc7f..0ffd3e6 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=mateusoliveira43_python-cli-script-template sonar.organization=mateusoliveira43 sonar.projectName=python-cli-script-template -sonar.projectVersion=1.1.2 +sonar.projectVersion=1.1.3 sonar.sourceEncoding=UTF-8 sonar.sources=cly sonar.tests=tests