Skip to content

Commit 561efdc

Browse files
committed
Final Release of 0.200.0
1 parent 47fd546 commit 561efdc

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to GOBL will be documented in this file.
44

55
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.
66

7-
## [v0.200.0-rc]
7+
## [v0.200.0]
88

99
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.
1010

bill/invoice.go

-1
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ func (inv Invoice) JSONSchemaExtend(js *jsonschema.Schema) {
606606
js.Extras = map[string]any{
607607
schema.Recommended: []string{
608608
"$regime",
609-
"$addons",
610609
"lines",
611610
},
612611
}

data/schemas/bill/invoice.json

-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,6 @@
476476
"description": "Invoice represents a payment claim for goods or services supplied under conditions agreed between the supplier and the customer.",
477477
"recommended": [
478478
"$regime",
479-
"$addons",
480479
"lines"
481480
]
482481
},

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
type Version string
99

1010
// VERSION is the current version of the GOBL library.
11-
const VERSION Version = "v0.200.0-rc4"
11+
const VERSION Version = "v0.200.0"
1212

1313
// Semver parses and returns semver
1414
func (v Version) Semver() *semver.Version {

0 commit comments

Comments
 (0)