From d0026e6c658c3c7a2d4d63025e04dbc016eb033a Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Tue, 26 Nov 2024 09:40:51 +0000 Subject: [PATCH] Release 0.206.0 --- CHANGELOG.md | 2 ++ data/schemas/bill/invoice.json | 4 ++++ version.go | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66c3c09a..559558eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +## [v0.206.0] - 2024-11-26 + ### Added - `ae`: added UAE regime diff --git a/data/schemas/bill/invoice.json b/data/schemas/bill/invoice.json index 54023948..ef5f02ec 100644 --- a/data/schemas/bill/invoice.json +++ b/data/schemas/bill/invoice.json @@ -290,6 +290,10 @@ "$regime": { "$ref": "https://gobl.org/draft-0/l10n/tax-country-code", "oneOf": [ + { + "const": "AE", + "title": "United Arab Emirates" + }, { "const": "AT", "title": "Austria" diff --git a/version.go b/version.go index e118e41e..2c5b1f5a 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.205.1" +const VERSION Version = "v0.206.0" // Semver parses and returns semver func (v Version) Semver() *semver.Version {