diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a7b0e0..b35c1567 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to GOBL will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). See also the [GOBL versions](https://docs.gobl.org/overview/versions) documentation site for more details. -## [v0.200.0-rc] +## [v0.200.0] Another ~~significant~~ epic release. Introducing "add-ons" which move the normalization and validation rules from Tax Regimes to specific packages that need to be enabled inside a document to be used. diff --git a/bill/invoice.go b/bill/invoice.go index 5b3e0048..37f35d80 100644 --- a/bill/invoice.go +++ b/bill/invoice.go @@ -606,7 +606,6 @@ func (inv Invoice) JSONSchemaExtend(js *jsonschema.Schema) { js.Extras = map[string]any{ schema.Recommended: []string{ "$regime", - "$addons", "lines", }, } diff --git a/data/schemas/bill/invoice.json b/data/schemas/bill/invoice.json index 6492d980..90e07315 100644 --- a/data/schemas/bill/invoice.json +++ b/data/schemas/bill/invoice.json @@ -476,7 +476,6 @@ "description": "Invoice represents a payment claim for goods or services supplied under conditions agreed between the supplier and the customer.", "recommended": [ "$regime", - "$addons", "lines" ] }, diff --git a/version.go b/version.go index 7d2a03b6..ef587087 100644 --- a/version.go +++ b/version.go @@ -8,7 +8,7 @@ import ( type Version string // VERSION is the current version of the GOBL library. -const VERSION Version = "v0.200.0-rc4" +const VERSION Version = "v0.200.0" // Semver parses and returns semver func (v Version) Semver() *semver.Version {