Skip to content

Commit 811e095

Browse files
committed
Merge branch 'main' into main-github
2 parents 5917679 + ae2c017 commit 811e095

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.bumpversion.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[bumpversion]
2-
current_version = 0.0.3
3-
message = bump v{current_version} -> v{new_version}
2+
current_version = 0.0.4
3+
commit = True
4+
message = bump {current_version} -> {new_version}
45

56
[bumpversion:file:.bumpversion.cfg]
67

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.0.4] - 2023-09-25
11+
12+
### Changed
13+
14+
- rename `use_precommit` and `use_bumpversion` options to simply `precommit` and `bumpversion`
15+
16+
### Fixed
17+
18+
- doc template: all templates files are included now
19+
- do not include doc requirements in `make install-dev` if no docs are configured
20+
- documentation examples are now built using the cli
21+
1022
## [0.0.3] - 2023-09-21
1123

1224
### Added
@@ -69,7 +81,8 @@ An example project (comparable to [pypa/sampleproject]) can be found at [jannism
6981

7082
- trove classifiers (only relevant when publishing to PyPI)
7183

72-
[unreleased]: https://github.com/jannismain/python-project-template/compare/v0.0.3...HEAD
84+
[unreleased]: https://github.com/jannismain/python-project-template/compare/v0.0.4...HEAD
85+
[0.0.4]: https://github.com/jannismain/python-project-template/compare/0.0.3...0.0.4
7386
[0.0.3]: https://github.com/jannismain/python-project-template/compare/0.0.2...0.0.3
7487
[0.0.2]: https://github.com/jannismain/python-project-template/compare/0.0.1...0.0.2
7588
[0.0.1]: https://github.com/jannismain/python-project-template/releases/tag/0.0.1

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ fallback_version = "0.0.0"
3535
dev = ["black", "pre-commit", "ruff"]
3636
test = ["pytest", "pytest-venv", "pytest-xdist", "pexpect"]
3737
doc = [
38+
"mkdocs",
3839
"mkdocs-material",
3940
"mkdocs-git-revision-date-localized-plugin",
4041
"mkdocs-literate-nav",

src/init_python_project/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
app = Typer()
1313

14-
__version__ = "0.0.3"
14+
__version__ = "0.0.4"
1515

1616

1717
def version_callback(value: bool) -> None:

0 commit comments

Comments
 (0)