Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-sattler committed Feb 8, 2023
1 parent f14374d commit bc425ae
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2023-02-08

### Added

- Added command line interface with config files using [Pydantic](https://docs.pydantic.dev/) and [Pydantic Argparse](https://pydantic-argparse.supimdos.com/)
Expand Down
2 changes: 1 addition & 1 deletion builderer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from builderer.builderer import Builderer, Action


__version__ = "0.1.0"
__version__ = "0.2.0"
36 changes: 35 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

Expand Down Expand Up @@ -37,10 +37,44 @@ install_requires =
pydantic_argparse>=0.6
pyyaml>=5.1

[options.packages.find]
exclude =
tests

[options.entry_points]
console_scripts =
builderer = builderer.__main__:main

[options.package_data]
* = *.json

[flake8]
per-file-ignores = __init__.py:F401
max-complexity = 10
max-line-length = 120

[aliases]
test = pytest

[tool:pytest]
addopts = --ignore setup.py

[mypy]
disallow_untyped_defs = True
plugins = pydantic.mypy
follow_imports = silent
warn_redundant_casts = True
warn_unused_ignores = True
disallow_any_generics = True
check_untyped_defs = True
no_implicit_reexport = True

[pydantic-mypy]
init_forbid_extra = True
init_typed = True
warn_required_dynamic_aliases = True
warn_untyped_fields = True

[bumpversion:file:builderer/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

0 comments on commit bc425ae

Please sign in to comment.