Skip to content

Commit ab909be

Browse files
committed
Preparing release 0.202
1 parent 15fb3f4 commit ab909be

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9-
### Change
9+
## [v0.202.0]
10+
11+
### Changed
1012

1113
- `org.DocumentRef`: renamed `line` to `lines` that accepts an array of integers making it possible to define a selection of reference lines in another document as opposed to just one.
1214

data/schemas/cbc/code.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"minLength": 1,
1010
"pattern": "^[A-Za-z0-9]+([\\.\\-\\/ _]?[A-Za-z0-9]+)*$",
1111
"title": "Code",
12-
"description": "Alphanumerical text identifier with upper-case letters, no whitespace, nor symbols."
12+
"description": "Alphanumerical text identifier with upper-case letters and limits on using\nspecial characters or whitespace to separate blocks."
1313
}
1414
}
1515
}

data/schemas/org/document-ref.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,13 @@
3131
"title": "Code",
3232
"description": "Source document's code or other identifier."
3333
},
34-
"line": {
35-
"type": "integer",
36-
"title": "Line",
37-
"description": "Line index number inside the document, if relevant."
34+
"lines": {
35+
"items": {
36+
"type": "integer"
37+
},
38+
"type": "array",
39+
"title": "Lines",
40+
"description": "Line index numbers inside the document, if relevant."
3841
},
3942
"identities": {
4043
"items": {

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.201.0"
11+
const VERSION Version = "v0.202.0"
1212

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

0 commit comments

Comments
 (0)