From cf5b2d2fd27b835bae08c25c85637d02aa933c50 Mon Sep 17 00:00:00 2001 From: Denis Rosset Date: Wed, 23 Mar 2022 13:08:01 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=208.0.0b0=20=E2=86=92=208.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 2 +- CHANGELOG.md | 13 +++++++++++++ docs/source/tutorial/step1.rst | 1 + pyproject.toml | 4 ++-- src/configpile/__init__.py | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 01b588a..9db2864 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -29,4 +29,4 @@ "esbonio.sphinx.buildDir": "${workspaceFolder}/docs/build/html", "esbonio.sphinx.confDir": "/home/denis/w/configpile/docs/source", "esbonio.sphinx.srcDir": "${workspaceFolder}/docs/source", -} \ No newline at end of file +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ee3d27..30d3536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v8.0.0 (2022-03-23) + +### Fix + +- **config**: fix docstring for Sphinx +- remove pytest-mypy-plugins +- **docs**: fix the name of the calculator script in the example + +### Refactor + +- **config**: change Validator definition due to bug +- refactored configpile.arg + ## v8.0.0b0 (2022-03-22) ### Fix diff --git a/docs/source/tutorial/step1.rst b/docs/source/tutorial/step1.rst index 12e4550..ed20d86 100644 --- a/docs/source/tutorial/step1.rst +++ b/docs/source/tutorial/step1.rst @@ -11,3 +11,4 @@ Example code .. command-output:: python ../../examples/calculator1.py --x 1 --y 2 .. command-output:: python ../../examples/calculator1.py --x asd --y zxc + :returncode: 1 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index b091e22..f6a73b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ license = "MIT" name = "configpile" readme = "README.rst" repository = "https://github.com/denisrosset/configpile.git" -version = "8.0.0b0" +version = "8.0.0" [tool.poetry.dependencies] class-doc = "^0.2.6" @@ -129,7 +129,7 @@ style = [ ] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "8.0.0b0" +version = "8.0.0" version_files = [ "src/configpile/__init__.py:version", "pyproject.toml:version", diff --git a/src/configpile/__init__.py b/src/configpile/__init__.py index ee4c996..021a0a2 100644 --- a/src/configpile/__init__.py +++ b/src/configpile/__init__.py @@ -1,4 +1,4 @@ -__version__ = "8.0.0b0" +__version__ = "8.0.0" from . import types from .arg import Derived, Expander, Param, Positional