release: prepare Sandwich Hime v1 beta

Publish the sanitized Beta 1 source candidate with version-stable generated provenance, classroom/evaluation support boundaries, provisional macOS support, signed-source release policy, and an exact candidate preflight.

Material implementation, drafting, and review were assisted by OpenAI Codex. Cole Speelman reviewed the public snapshot and accepts human responsibility for the contribution.

Signed-off-by: Cole Speelman <crspeelman@gmail.com>
This commit is contained in:
2026-08-12 14:37:53 -04:00
parent 113c95c21e
commit b7a84054d7
22 changed files with 824 additions and 193 deletions
+24 -2
View File
@@ -316,6 +316,28 @@ func auditTrustCalls(file *sourceFile) []Diagnostic {
return diagnostics
}
func bytesEqual(a, b []byte) bool {
return bytes.Equal(a, b)
// generatedCodeEqual compares the freshness-relevant portions of two
// generated files. The compiler release is informational provenance: changing
// only that line must not make otherwise identical output stale. Every other
// byte remains part of the generated-code contract.
func generatedCodeEqual(a, b []byte) bool {
if bytes.Equal(a, b) {
return true
}
aBody, aOK := generatedCodeWithoutCompilerVersion(a)
bBody, bOK := generatedCodeWithoutCompilerVersion(b)
return aOK && bOK && bytes.Equal(aBody, bBody)
}
func generatedCodeWithoutCompilerVersion(code []byte) ([]byte, bool) {
prefix := []byte(generatedPrefix + "\n// himesan:compiler ")
if !bytes.HasPrefix(code, prefix) {
return nil, false
}
remainder := code[len(prefix):]
lineEnd := bytes.IndexByte(remainder, '\n')
if lineEnd <= 0 {
return nil, false
}
return remainder[lineEnd:], true
}