From 0e6842dcabb79425597fba1ed8a76018f2503b81 Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Thu, 30 May 2024 20:17:59 +0000 Subject: [PATCH] Version bump --- CHANGELOG.md | 6 ++++++ version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb09e557..285e190c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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. +## [v0.78.1] - 2024-05-30 + +### Fixed + +- CH: fixing tax ID checksum validation that ends in `0`. + ## [v0.78.0] - 2024-05-23 ### Added diff --git a/version.go b/version.go index 7fd7957a..be2ed50e 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.78.0" +const VERSION Version = "v0.78.1" // Semver parses and returns semver func (v Version) Semver() *semver.Version {