Skip to content

Commit

Permalink
Merge pull request #391 from invopop/release-0.202
Browse files Browse the repository at this point in the history
Preparing release 0.202
  • Loading branch information
samlown authored Oct 14, 2024
2 parents 15fb3f4 + ab909be commit 41e7454
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

### Change
## [v0.202.0]

### Changed

- `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.

Expand Down
2 changes: 1 addition & 1 deletion data/schemas/cbc/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"minLength": 1,
"pattern": "^[A-Za-z0-9]+([\\.\\-\\/ _]?[A-Za-z0-9]+)*$",
"title": "Code",
"description": "Alphanumerical text identifier with upper-case letters, no whitespace, nor symbols."
"description": "Alphanumerical text identifier with upper-case letters and limits on using\nspecial characters or whitespace to separate blocks."
}
}
}
11 changes: 7 additions & 4 deletions data/schemas/org/document-ref.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,13 @@
"title": "Code",
"description": "Source document's code or other identifier."
},
"line": {
"type": "integer",
"title": "Line",
"description": "Line index number inside the document, if relevant."
"lines": {
"items": {
"type": "integer"
},
"type": "array",
"title": "Lines",
"description": "Line index numbers inside the document, if relevant."
},
"identities": {
"items": {
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.201.0"
const VERSION Version = "v0.202.0"

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

0 comments on commit 41e7454

Please sign in to comment.