Skip to content

Commit b8ba58b

Browse files
Develop (#48)
let's see if issues get closed if I mention them in another commit
1 parent ca022d8 commit b8ba58b

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

.github/workflows/user-doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-python@v2
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-python@v4
1313
with:
1414
python-version: 3.x
1515
- run: pip install --upgrade pip

changelog.d/44.doc.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Using admonitions

changelog.d/46.unimportant.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Using actions/checkout@v3 in the CI

changelog.d/47.unimportant.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Using setup-python@v4 in the CI

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ validate-bump = True
2525
scheme = "semver"
2626
```
2727

28-
### Beware
28+
!!! warning
2929

30-
Hatch-semver plugin will only work with project versions which can be readily parsed by [python-semver][python-semver].
31-
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.**
32-
You can test that [here][semver-regex].
30+
Hatch-semver plugin will only work with project versions which can be readily parsed by [python-semver][python-semver].
31+
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.**
32+
You can test that [here][semver-regex].
3333

3434
## Quick Start
3535

mkdocs.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,12 @@ watch:
1919

2020
theme:
2121
name: "material"
22+
icon:
23+
admonition:
24+
warning: octicons/alert-24
25+
26+
27+
markdown_extensions:
28+
- admonition
29+
- pymdownx.details
30+
- pymdownx.superfences

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

0 commit comments

Comments
 (0)