Skip to content

Commit

Permalink
bump: version 8.0.0b0 → 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
denisrosset committed Mar 23, 2022
1 parent 917849b commit cf5b2d2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/source/tutorial/step1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/configpile/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "8.0.0b0"
__version__ = "8.0.0"

from . import types
from .arg import Derived, Expander, Param, Positional
Expand Down

0 comments on commit cf5b2d2

Please sign in to comment.