Skip to content

Commit 65c4cce

Browse files
author
AdvancingTitans
committed
fix: pin publish-compatible build backend
1 parent 1a624f4 commit 65c4cce

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.6] - 2026-06-01
9+
10+
### Fixed
11+
- Pinned the build backend to a PyPI-publish-compatible Hatchling release after the first `v0.1.5` publish attempt produced wheel metadata rejected by the publish action.
12+
813
## [0.1.5] - 2026-06-01
914

1015
### Fixed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["hatchling"]
2+
requires = ["hatchling<1.27"]
33
build-backend = "hatchling.build"
44

55
[project]
66
name = "young-stock-cli"
7-
version = "0.1.5"
7+
version = "0.1.6"
88
description = "A-share (China stock market) after-hours CLI — no login, no scraping tricks, just data."
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/young_stock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""young-stock-cli: A-share after-hours CLI."""
22

3-
__version__ = "0.1.5"
3+
__version__ = "0.1.6"

0 commit comments

Comments
 (0)