Skip to content

Commit ca4f5aa

Browse files
chore(release): 0.8.0-dev.2
## 0.8.0-dev.2 (2025-12-04) * fix(ci): wrong location of npm package in `.releaserc.sjon` ([0a1d5bd](0a1d5bd)) * chore: npm-audit-fix ([8752d47](8752d47)) * ci: add automated PyPI publishing ([82b7316](82b7316))
1 parent 0a1d5bd commit ca4f5aa

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.8.0-dev.2 (2025-12-04)
2+
3+
* fix(ci): wrong location of npm package in `.releaserc.sjon` ([0a1d5bd](https://github.com/CrackingShells/Hatch-Validator/commit/0a1d5bd))
4+
* chore: npm-audit-fix ([8752d47](https://github.com/CrackingShells/Hatch-Validator/commit/8752d47))
5+
* ci: add automated PyPI publishing ([82b7316](https://github.com/CrackingShells/Hatch-Validator/commit/82b7316))
6+
17
## [0.8.0-dev.1](https://github.com/CrackingShells/Hatch-Validator/compare/v0.7.1...v0.8.0-dev.1) (2025-11-04)
28

39

pyproject.toml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
2+
requires = [ "setuptools>=61.0" ]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hatch-validator"
7-
version = "0.7.1"
8-
authors = [
9-
{ name = "Hatch Team" },
10-
]
7+
version = "0.8.0-dev.2"
118
description = "Package validator for Hatch packages"
129
readme = "README.md"
1310
requires-python = ">=3.7"
11+
dependencies = [ "jsonschema>=4.0.0", "requests>=2.25.0", "packaging>=20.0" ]
1412

15-
dependencies = [
16-
"jsonschema>=4.0.0",
17-
"requests>=2.25.0",
18-
"packaging>=20.0",
19-
]
13+
[[project.authors]]
14+
name = "Hatch Team"
2015

21-
[project.urls]
22-
"Homepage" = "https://github.com/CrackingShells/Hatch-Validator"
23-
"Bug Tracker" = "https://github.com/CrackingShells/Hatch-Validator/issues"
16+
[project.urls]
17+
Homepage = "https://github.com/CrackingShells/Hatch-Validator"
18+
"Bug Tracker" = "https://github.com/CrackingShells/Hatch-Validator/issues"
2419

25-
[tool.setuptools]
26-
package-dir = {"" = "."}
20+
[tool.setuptools.package-dir]
21+
"" = "."
2722

2823
[tool.setuptools.packages.find]
29-
where = ["."]
24+
where = [ "." ]

0 commit comments

Comments
 (0)