ace-handbook 0.20.0 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/handbook/skills/as-release-rubygems-publish/SKILL.md +0 -1
- data/lib/ace/handbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 601dc9817570da785077875d586005bd52693f9fda174cbd6c6ab1a52caff72c
|
|
4
|
+
data.tar.gz: 6fac18f1c2b84444de63d4922f959c0ea75d7ac949778ebb614d60a5a27a06aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d81b467e7f3a34c6856a37732072703ce582088a9c8a1706e5f9c6c2c3cdd1b2b7d24f4067202b2e9594d3b3df6c4a1c9fd8282ab9a912d43856a5f783c5a16
|
|
7
|
+
data.tar.gz: 41c864dc6543d3de1b63af4e9107c34f3b4ebc7c03c3861424c005db288ef557f4509158d67869cf86b052242832e397876c1e6f95ba7fa7f62f5c75d0b23479
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.21.0] - 2026-03-28
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Migrated most RubyGems publish decision logic into `wfi://release/rubygems-publish`, keeping `as-release-rubygems-publish` as a thin workflow wrapper.
|
|
15
|
+
|
|
16
|
+
### Technical
|
|
17
|
+
|
|
18
|
+
- Removed skill-local pending-release-discovery preference logic and aligned the workflow with build-first + single-OTP publish behavior.
|
|
19
|
+
|
|
10
20
|
## [0.20.0] - 2026-03-28
|
|
11
21
|
|
|
12
22
|
### Added
|
|
@@ -54,6 +54,5 @@ None
|
|
|
54
54
|
- Run `ace-bundle wfi://release/rubygems-publish` in the current project to load the workflow instructions.
|
|
55
55
|
- Read the loaded workflow and execute it end-to-end in this project.
|
|
56
56
|
- Follow the workflow as the source of truth.
|
|
57
|
-
- If `bin/ace-rubygems-needs-release` exists, prefer it for pending-release discovery before falling back to per-gem RubyGems checks.
|
|
58
57
|
- Do the work described by the workflow instead of only summarizing it.
|
|
59
58
|
- When the workflow requires edits, tests, or commits, perform them in this project.
|
data/lib/ace/handbook/version.rb
CHANGED