Skip to content

Commit

Permalink
Merge pull request #348 from invopop/release-0.114
Browse files Browse the repository at this point in the history
Release 0.114
  • Loading branch information
samlown authored Aug 26, 2024
2 parents 6232503 + 42e43c5 commit b38541f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ 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.

## [Unreleased]
## [v0.114.0]

### Changed

- `org.Name`: either given **or** surname are required, as opposed to both at the same time.

## [v0.113.0]

### Added

- `head`: validation rule to check for the presence of stamps
Expand Down
3 changes: 3 additions & 0 deletions data/regimes/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@
"schema": "bill/invoice",
"types": [
"credit-note"
],
"stamps": [
"iapr-mark"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion data/schemas/bill/invoice.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@
},
"amount": {
"$ref": "https://gobl.org/draft-0/num/amount",
"title": "Value",
"title": "Amount",
"description": "Fixed discount amount to apply (calculated if percent present).",
"calculated": true
},
Expand Down
4 changes: 0 additions & 4 deletions data/schemas/org/name.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@
}
},
"type": "object",
"required": [
"given",
"surname"
],
"description": "Name represents what a human is called."
}
}
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.113.0"
const VERSION Version = "v0.114.0"

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

0 comments on commit b38541f

Please sign in to comment.