Skip to content

Commit 194c1c1

Browse files
准备 0.1.7 发布说明
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
1 parent c7a0ae2 commit 194c1c1

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Detailed notes for each tagged release live under [`docs/releases/`](./docs/rele
55

66
## Unreleased
77

8+
## v0.1.7
9+
10+
- Release notes: [docs/releases/v0.1.7.md](./docs/releases/v0.1.7.md)
11+
812
## v0.1.6
913

1014
- Release notes: [docs/releases/v0.1.6.md](./docs/releases/v0.1.6.md)

docs/releases/v0.1.7.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# v0.1.7
2+
3+
## Summary
4+
5+
- Refactor the package around clearer application, workflow, domain, and capability seams.
6+
- Split heavy orchestration and generation responsibilities out of `core.py` and `skill_generator.py`.
7+
- Improve packaging reliability by switching to a single dynamic version source and tightening release validation.
8+
9+
## Highlights
10+
11+
### Architecture
12+
13+
- Add application-facing workflow entrypoints and normalized command summaries.
14+
- Extract execution mode selection, reporting, blueprint assembly, output bundle writing, and state snapshot building into focused services.
15+
- Split skill generation support into dedicated markdown, context, and prompt modules.
16+
17+
### Product and documentation
18+
19+
- Update README, Chinese README, CLI guide, Python API guide, output layout guide, and release guide.
20+
- Record the architecture/design plan for the refactor under `docs/superpowers/`.
21+
22+
### Packaging and release flow
23+
24+
- Verify standard install, editable install, console script, and `python -m code2skill` usage.
25+
- Make `pyproject.toml` read the package version dynamically from `code2skill.version.__version__`.
26+
- Update release and publish workflows to validate the dynamic version source instead of a duplicated static version field.

src/code2skill/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.6"
1+
__version__ = "0.1.7"

0 commit comments

Comments
 (0)