space-architect 5.2.0 → 5.2.1
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 +11 -0
- data/lib/space_architect/cli/architect.rb +1 -1
- data/lib/space_core/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: 93b3a0ea0bc130ae742448df96c9a1e884ad3ef5b75963f613d81db5029332ce
|
|
4
|
+
data.tar.gz: 9d09eecfcc005bde3a4820b1b8de40aa85dd0ce90237545001bed505779b2a0b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5e4bd5be523832721290f02ae4c3e3b790c1fe0b10cc0a70135c65675c5c162fcf201cc755914fd0fba77675562799977f05027359ead2892030c9013fd4c5c
|
|
7
|
+
data.tar.gz: '0961b982476aeacfa3be31fc6e3b5f8345ddf568ba2d76932099222a79628edb17f9a6c6ce48b57907793e61d8acb84ba80b16e0a9f166033a100c423855126f'
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [5.2.1] - 2026-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **`integrate` final line no longer claims "the verdict is the next session's"**
|
|
13
|
+
— the clause assumed a handoff to a fresh judging session, but the common
|
|
14
|
+
workflow starts a session that waits on the background builder jobs and then
|
|
15
|
+
judges in the *same* session. The line now reads "Gates NOT run — run gates:
|
|
16
|
+
`architect gate <iteration>`", a neutral instruction that holds in both the
|
|
17
|
+
same-session and fresh-session workflows.
|
|
18
|
+
|
|
8
19
|
## [5.2.0] - 2026-07-19
|
|
9
20
|
|
|
10
21
|
### Added
|
|
@@ -548,7 +548,7 @@ module Space::Architect
|
|
|
548
548
|
results.each do |r|
|
|
549
549
|
terminal.say "Merged #{r[:lane]} → #{r[:integration_branch]} (#{r[:merge_sha][0, 8]})"
|
|
550
550
|
end
|
|
551
|
-
terminal.say "Gates NOT run — run `architect gate #{iteration}
|
|
551
|
+
terminal.say "Gates NOT run — run gates: `architect gate #{iteration}`"
|
|
552
552
|
end
|
|
553
553
|
CLI.record_outcome(Outcome.new(exit_code: 0))
|
|
554
554
|
end
|
data/lib/space_core/version.rb
CHANGED