Skip to content

Commit

Permalink
bump: version 1.2.6 → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Oct 14, 2023
1 parent 466f52a commit 3fc00ca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion copier_template_tester/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from beartype.roar import BeartypeDecorHintPep585DeprecationWarning
from typing_extensions import Self

__version__ = '1.2.6'
__version__ = '2.0.0'
__pkg_name__ = 'copier_template_tester'


Expand Down
5 changes: 5 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
- remove unused F401 and H303
- update copier to latest to unblock pydantic v2 upgrade

### Refactor

- remove optional beartype
- use literal to try to fix pyright errors


- pending pydantic v2 support

Expand Down
10 changes: 5 additions & 5 deletions docs/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ poetry config pypi-token.pypi ...
| File | Statements | Missing | Excluded | Coverage |
|-------------------------------------------------|--------------|-----------|------------|------------|
| `copier_template_tester/__init__.py` | 17 | 0 | 17 | 100.0% |
| `copier_template_tester/_config.py` | 17 | 0 | 3 | 92.0% |
| `copier_template_tester/_pre_commit_support.py` | 19 | 0 | 0 | 84.4% |
| `copier_template_tester/_write_output.py` | 78 | 11 | 13 | 80.4% |
| `copier_template_tester/main.py` | 27 | 0 | 15 | 96.6% |
| **Totals** | 158 | 11 | 48 | 86.3% |
| `copier_template_tester/_config.py` | 14 | 0 | 3 | 100.0% |
| `copier_template_tester/_pre_commit_support.py` | 15 | 0 | 0 | 100.0% |
| `copier_template_tester/_write_output.py` | 76 | 0 | 13 | 99.0% |
| `copier_template_tester/main.py` | 24 | 0 | 14 | 100.0% |
| **Totals** | 146 | 0 | 47 | 99.4% |

Generated on: 2023-10-14
<!-- {cte} -->
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]

[tool.commitizen]
version = "1.2.6"
version = "2.0.0"
version_files = ["copier_template_tester/__init__.py:^__version", "pyproject.toml:^version"]

[tool.poetry]
Expand All @@ -24,7 +24,7 @@ maintainers = []
name = "copier_template_tester"
readme = "docs/README.md"
repository = "https://github.com/kyleking/copier-template-tester"
version = "1.2.6"
version = "2.0.0"

[tool.poetry.dependencies]
python = "^3.10.5"
Expand Down

0 comments on commit 3fc00ca

Please sign in to comment.