ace-docs 0.31.2 → 0.31.3
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 +5 -0
- data/handbook/workflow-instructions/docs/squash-changelog.wf.md +7 -0
- data/lib/ace/docs/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: 29f3da08da80463e9fc5e2158dc36d566ef2fa0d182db9fb58337ba8bc119390
|
|
4
|
+
data.tar.gz: 15b7bc33c6380fc2fc7ad1e770df28d587c10cdecd0e7df5b71276bfe988ac18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ceeaf693f04654cb7ec82ca7bdf7f3b4573754efbf75ac89927da57f7d46a19c5168333500dd145dc1a2020243da57ee3e08c41d6509b4f138f602149b3e0b84
|
|
7
|
+
data.tar.gz: 69ad4757dd3fd0801fe127f84a3f1dad8ec0fd84e7c42df40dbafa389730f4e81a2be01a11f66714ef5865589a3156b70a6b739f3e054478cc06afeddbb421b6
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.31.3] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Added deprecation note to `squash-changelog` workflow: rarely needed now that root changelog entries accumulate under `[Unreleased]`.
|
|
14
|
+
|
|
10
15
|
## [0.31.2] - 2026-03-29
|
|
11
16
|
|
|
12
17
|
### Technical
|
|
@@ -13,6 +13,13 @@ Consolidate multiple CHANGELOG.md version entries added on a feature branch into
|
|
|
13
13
|
|
|
14
14
|
## When to Use
|
|
15
15
|
|
|
16
|
+
> **Note:** Since root changelog entries now accumulate under `[Unreleased]` (no version numbers assigned until
|
|
17
|
+
> publish via `wfi://github/release-publish`), this workflow is rarely needed on new branches. It remains useful
|
|
18
|
+
> for:
|
|
19
|
+
> - Legacy branches created before the unreleased-mode change
|
|
20
|
+
> - Branches where someone explicitly created versioned entries
|
|
21
|
+
> - Any situation where multiple `## [X.Y.Z]` entries need consolidation
|
|
22
|
+
|
|
16
23
|
On feature branches with multiple `ace-release` cycles that each added a version entry to root `CHANGELOG.md`. Before merging the PR, squash these into one entry using the **lowest** version number.
|
|
17
24
|
|
|
18
25
|
## Prerequisites
|
data/lib/ace/docs/version.rb
CHANGED