Skip to content

Commit

Permalink
Quick fix release for corrected ext recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Feb 9, 2024
1 parent 447b75b commit 9c30b32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bill/invoice_correct.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ func (inv *Invoice) CorrectionOptionsSchema() (interface{}, error) {
}
}
}
cos.Required = append(cos.Required, "ext")
cos.Extras = map[string]any{
schema.Recommended: "ext",
}
} else {
// Remove extensions, they're not needed if not defined
cos.Properties.Delete("ext")
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
type Version string

// VERSION is the current version of the GOBL library.
const VERSION Version = "v0.67.4"
const VERSION Version = "v0.67.5"

// Semver parses and returns semver
func (v Version) Semver() *semver.Version {
Expand Down

0 comments on commit 9c30b32

Please sign in to comment.