Skip to content

Commit 23d0831

Browse files
Develop (#32)
fixes #31
1 parent d399170 commit 23d0831

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- towncrier release notes start -->
44

5+
## [0.2.3](https://github.com/Nagidal/hatch-semver/tree/0.2.3) - 2022-11-15
6+
7+
8+
### Documentation
9+
10+
- Separated home.md from README.md [#31](https://github.com/Nagidal/hatch-semver/issues/31)
11+
12+
513
## [0.2.2](https://github.com/Nagidal/hatch-semver/tree/0.2.2) - 2022-11-15
614

715

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set version scheme to `semver`:
2121
```toml
2222
[tool.hatch.version]
2323
path = "src/<your_project>/__about__.py"
24-
validate-bump = True
24+
validate-bump = true
2525
scheme = "semver"
2626
```
2727

docs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- towncrier release notes start -->
44

5+
## [0.2.2](https://github.com/Nagidal/hatch-semver/tree/0.2.2) - 2022-11-15
6+
7+
8+
### Documentation
9+
10+
- Removed api-docs [#29](https://github.com/Nagidal/hatch-semver/issues/29)
11+
12+
513
## [0.2.1](https://github.com/Nagidal/hatch-semver/tree/0.2.1) - 2022-11-15
614

715

File renamed without changes.

mkdocs.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
site_name: Hatch Semver
22

33
nav:
4-
- Home: "README.md"
4+
- Home: "home.md"
55
- Changelog: "CHANGELOG.md"
66
- "User Guide":
77
- Commands: "user_guide/1-commands.md"
@@ -12,11 +12,7 @@ docs_dir: "docs"
1212
site_dir: "user-site"
1313

1414
watch:
15-
<<<<<<< HEAD
1615
- "docs"
17-
=======
18-
- "user-docs"
19-
>>>>>>> master
2016

2117
theme:
2218
name: "material"

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,19 @@ fmt = [
9393
[tool.hatch.envs.docs]
9494
dependencies = [
9595
"mkdocs",
96-
"pdoc3",
9796
"mkdocs-material",
97+
"pdoc3",
98+
"towncrier",
9899
]
99100

100101
[tool.hatch.envs.docs.scripts]
101102
build = "pdoc --html --force --output-dir api-site hatch_semver"
102103
serve = "pdoc --http : hatch_semver"
103104
userve = [
104-
"copy /Y README.md docs",
105105
"copy /Y CHANGELOG.md docs",
106106
"mkdocs serve",
107107
]
108+
tc = "towncrier build --yes"
108109

109110
[[tool.hatch.envs.test.matrix]]
110111
python = ["310"]

src/hatch_semver/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
__maintainer__ = __author__
99
__maintainer_email__ = __author_email__
1010
__release_date__ = date(year=2022, month=11, day=13)
11-
__version__ = "0.2.2"
11+
__version__ = "0.2.3"

0 commit comments

Comments
 (0)