Skip to content

Commit

Permalink
bump: version 2.1.0 → 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Nov 23, 2023
1 parent 2f5e3b0 commit 0869a84
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 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__ = '2.1.0'
__version__ = '2.1.1'
__pkg_name__ = 'copier_template_tester'


Expand Down
8 changes: 8 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
## Unreleased

### Fix

- **#28**: catch untracked .ctt directory
- **#28**: append ctt-specific exclude rules

## 2.1.0 (2023-11-21)

### Feat

- improve error handling for recursion
- **#25**: add test when _subdir is not specified

### Fix

- patch Nox with Python 3.12
- don't remove the dst_path before copier run (from #24)
- include defaults in _exclude documentation

Expand Down
8 changes: 4 additions & 4 deletions docs/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ poetry config pypi-token.pypi ...
|-------------------------------------------------|--------------|-----------|------------|------------|
| `copier_template_tester/__init__.py` | 17 | 0 | 17 | 100.0% |
| `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` | 82 | 3 | 13 | 93.4% |
| `copier_template_tester/_pre_commit_support.py` | 13 | 0 | 0 | 94.1% |
| `copier_template_tester/_write_output.py` | 76 | 0 | 13 | 98.0% |
| `copier_template_tester/main.py` | 30 | 4 | 14 | 86.7% |
| **Totals** | 158 | 7 | 47 | 94.3% |
| **Totals** | 150 | 4 | 47 | 96.1% |

Generated on: 2023-11-21
Generated on: 2023-11-23
<!-- {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 = "2.1.0"
version = "2.1.1"
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 = "2.1.0"
version = "2.1.1"

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

0 comments on commit 0869a84

Please sign in to comment.