Skip to content

Commit c9b10e7

Browse files
Develop (#50)
fixes #49
1 parent b8ba58b commit c9b10e7

File tree

8 files changed

+63
-6
lines changed

8 files changed

+63
-6
lines changed

CHANGELOG.md

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

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

5+
## [1.0.0-rc.3](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.3) - 2022-11-16
6+
7+
8+
### Documentation
9+
10+
- Using admonitions [#44](https://github.com/Nagidal/hatch-semver/issues/44)
11+
- Using a note admonition in `index.md` [#49](https://github.com/Nagidal/hatch-semver/issues/49)
12+
13+
14+
### Development Details
15+
16+
- Using actions/checkout@v3 in the CI [#46](https://github.com/Nagidal/hatch-semver/issues/46)
17+
- Using setup-python@v4 in the CI [#47](https://github.com/Nagidal/hatch-semver/issues/47)
18+
19+
20+
## [1.0.0-rc.2](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.2) - 2022-11-16
21+
22+
23+
### Documentation
24+
25+
- Using admonitions [#44](https://github.com/Nagidal/hatch-semver/issues/44)
26+
27+
28+
### Development Details
29+
30+
- Using actions/checkout@v3 in the CI [#46](https://github.com/Nagidal/hatch-semver/issues/46)
31+
- Using setup-python@v4 in the CI [#47](https://github.com/Nagidal/hatch-semver/issues/47)
32+
33+
534
## [1.0.0-rc.1](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.1) - 2022-11-16
635

736

changelog.d/44.doc.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/46.unimportant.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/47.unimportant.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/CHANGELOG.md

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

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

5+
## [1.0.0-rc.3](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.3) - 2022-11-16
6+
7+
8+
### Documentation
9+
10+
- Using admonitions [#44](https://github.com/Nagidal/hatch-semver/issues/44)
11+
- Using a note admonition in `index.md` [#49](https://github.com/Nagidal/hatch-semver/issues/49)
12+
13+
14+
### Development Details
15+
16+
- Using actions/checkout@v3 in the CI [#46](https://github.com/Nagidal/hatch-semver/issues/46)
17+
- Using setup-python@v4 in the CI [#47](https://github.com/Nagidal/hatch-semver/issues/47)
18+
19+
20+
## [1.0.0-rc.2](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.2) - 2022-11-16
21+
22+
23+
### Documentation
24+
25+
- Using admonitions [#44](https://github.com/Nagidal/hatch-semver/issues/44)
26+
27+
28+
### Development Details
29+
30+
- Using actions/checkout@v3 in the CI [#46](https://github.com/Nagidal/hatch-semver/issues/46)
31+
- Using setup-python@v4 in the CI [#47](https://github.com/Nagidal/hatch-semver/issues/47)
32+
33+
534
## [1.0.0-rc.1](https://github.com/Nagidal/hatch-semver/tree/1.0.0-rc.1) - 2022-11-16
635

736

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ validate-bump = True
2525
scheme = "semver"
2626
```
2727

28-
!!! warning
28+
!!! note
2929

3030
Hatch-semver plugin will only work with project versions which can be readily parsed by [python-semver][python-semver].
3131
Therefore, if you are introducing hatch-semver into an existing project, you must **make sure that the project's current version is a valid semantic version.**

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ userve = [
111111
tc = [
112112
"towncrier build --yes",
113113
"Copy-Item -path ./CHANGELOG.md -destination ./docs -force",
114-
"git add -u",
114+
"git add CHANGELOG.md",
115+
"git add docs/CHANGELOG.md",
116+
"git commit -m \"updated changelog\""
115117
]
116118

117119
[[tool.hatch.envs.test.matrix]]

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__ = "1.0.0-rc.2"
11+
__version__ = "1.0.0-rc.3"

0 commit comments

Comments
 (0)