Skip to content

Commit 0cf4f58

Browse files
fleetingbytesSven Siegmund
andauthored
Develop (#94)
* looks testable to me * v0.0.2 * updated changelog * renamed module * v0.0.3 * rough outline * changelog * fixed #10 * changelog * news fragment * changelog * added news fragment * changelog * fixed #14 * changelog * added few testcases, more to come * wrote some more tests * Basics are done, now the documentation * renamed details to unimportant because of alphabetical section ordering * updated changelog * fixed isort setting * written some docs, abandoning portray * documentation done * docs done * removed portray * version 0.2.0 ready * moved user-docs * updated pyproject * removed api docs * removed api docs * well formatted * fixed #31 * tc script * switching to hatch-semver * release candidate ready * v0.2.4 * testing a ci * changes to mkdocs.yaml * added author * changed doc pipeline * fixes #44, fixes #46, fixes #47 * i guess, it's an update * changed admonition to note * news fragment * updated tc script * test stage set up * modified docs:tc script * pull_request instead of pull-request * v20201129 * installing hatch * dropped stupid actions * try this * try that * maybe this will please GH * no parallel * restructured * maybe now * python versions as string * calling pytest * installing self * installing cwd * v1.0.0 * Fixed typos and errors, fixes #59 * tests for about and changelog, links in pyproject.toml updated * committing, maybe * maybe the ref develop is not necessary * fixed typo in doc * Testlint (#71) added a linting stage * Noflake8 (#72) need to merge this even it test failed * Noflake8 (#73) should be ok now * style: prepare for newline conversion * updated changelog * docs: update changelog * 90 lookuperror during pip install with no binary flag (#93) * fix: use hatch-semver 2.0.1 as build dependency * fix: tc draft script * style: correct commit message in tc build script --------- Co-authored-by: Sven Siegmund <[email protected]> --------- Co-authored-by: Sven Siegmund <[email protected]>
1 parent b3aad6a commit 0cf4f58

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

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

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

5+
## [2.0.2](https://github.com/fleetingbytes/hatch-semver/tree/2.0.2) - 2024-02-17
6+
7+
8+
### Bugfixes
9+
10+
- use hatch-semver 2.0.1 as build dependency [#90](https://github.com/fleetingbytes/hatch-semver/issues/90)
11+
512
## [2.0.1](https://github.com/fleetingbytes/hatch-semver/tree/2.0.1) - 2024-02-17
613

714

docs/CHANGELOG.md

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

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

5+
## [2.0.2](https://github.com/fleetingbytes/hatch-semver/tree/2.0.2) - 2024-02-17
6+
7+
8+
### Bugfixes
9+
10+
- use hatch-semver 2.0.1 as build dependency [#90](https://github.com/fleetingbytes/hatch-semver/issues/90)
11+
512
## [2.0.1](https://github.com/fleetingbytes/hatch-semver/tree/2.0.1) - 2024-02-17
613

714

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[build-system]
22
requires = [
33
"hatchling",
4+
"hatch-semver==2.0.1",
45
]
56
build-backend = "hatchling.build"
67

@@ -103,15 +104,12 @@ dependencies = [
103104
[tool.hatch.envs.tc.scripts]
104105
draft = [
105106
"towncrier build --draft",
106-
"git add --update",
107-
"git commit --message \"updated changelog\""
108107
]
109108
build = [
110109
"towncrier build --yes",
111-
# "Copy-Item -path ./CHANGELOG.md -destination ./docs -force",
112-
"copy /Y ./CHANGELOG.md ./docs",
110+
"cp -force ./CHANGELOG.md ./docs",
113111
"git add --update",
114-
"git commit --message \"updated changelog\""
112+
"git commit --message \"update changelog\""
115113
]
116114

117115
[tool.hatch.envs.docs]

src/hatch_semver/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
__release_date__ = date(year=2024, month=2, day=17)
1515

16-
__version__ = "2.0.1"
16+
__version__ = "2.0.2"

0 commit comments

Comments
 (0)