Skip to content

Commit 82fc7c0

Browse files
committed
Release v0.1.5 from main
1 parent d1a326a commit 82fc7c0

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

CHANGELOG.md

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

66
## Unreleased
77

8+
## v0.1.5
9+
10+
- Release notes: [docs/releases/v0.1.5.md](./docs/releases/v0.1.5.md)
11+
12+
## v0.1.4
13+
814
- Added checked-in GitHub Actions workflows for CI and tagged releases.
915
- Added dedicated CLI, Python API, output layout, and release guide documents.
1016
- Added package typing metadata via `py.typed`.
1117
- Split package extras into `test`, `release`, and `dev`.
12-
13-
## v0.1.4
14-
1518
- Release notes: [docs/releases/v0.1.4.md](./docs/releases/v0.1.4.md)
1619

1720
## v0.1.3

docs/releases/v0.1.5.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# code2skill v0.1.5
2+
3+
## Summary
4+
5+
This release publishes the repository and package polish work from the current `main` branch as the next installable version.
6+
7+
## Highlights
8+
9+
- finalized the CLI and high-level Python API surface for documented use
10+
- added checked-in GitHub Actions workflows for CI and tagged releases
11+
- added dedicated CLI, CI, Python API, output-layout, and release guides
12+
- added community-health files and a top-level changelog
13+
- added `py.typed` and split package extras into `test`, `release`, and `dev`
14+
- cleaned production/test boundaries by moving test-only backend mocks out of the package runtime
15+
16+
## Result
17+
18+
`main` and the release tag now point at a version that is intended to be the authoritative GitHub and PyPI state after the failed `0.1.4` re-publish attempt.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "code2skill"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Generate repository-aware Skills, blueprints, and AI rule files from real Python codebases."
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/code2skill/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .config import PricingConfig, RunOptions, ScanConfig, ScanLimits
1010
from .models import ExecutionReport, ScanExecution
1111

12-
__version__ = "0.1.4"
12+
__version__ = "0.1.5"
1313

1414
__all__ = [
1515
"adapt_repository",

0 commit comments

Comments
 (0)