v0.0.343
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m2s

This commit is contained in:
Mike Schwörer 2023-12-07 18:29:17 +01:00
parent f042183433
commit 5dad44ad09
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
3 changed files with 5 additions and 5 deletions

View File

@ -70,9 +70,9 @@ func GenerateCharsetIDSpecs(sourceDir string, destFile string) error {
newChecksum := cryptext.BytesSha256([]byte(newChecksumStr))
if newChecksum != oldChecksum {
fmt.Printf("[IDGenerate] Checksum has changed ( %s -> %s ), will generate new file\n\n", oldChecksum, newChecksum)
fmt.Printf("[CSIDGenerate] Checksum has changed ( %s -> %s ), will generate new file\n\n", oldChecksum, newChecksum)
} else {
fmt.Printf("[IDGenerate] Checksum unchanged ( %s ), nothing to do\n", oldChecksum)
fmt.Printf("[CSIDGenerate] Checksum unchanged ( %s ), nothing to do\n", oldChecksum)
return nil
}

View File

@ -61,7 +61,7 @@ func GenerateEnumSpecs(sourceDir string, destFile string) error {
}
}
gocode, _, err := _generateEnumSpecs(sourceDir, oldChecksum, destFile, true)
gocode, _, err := _generateEnumSpecs(sourceDir, destFile, oldChecksum, true)
if err != nil {
return err
}

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.342"
const GoextVersion = "0.0.343"
const GoextVersionTimestamp = "2023-12-07T17:57:06+0100"
const GoextVersionTimestamp = "2023-12-07T18:29:17+0100"