Skip to content

Commit 549c3b8

Browse files
authored
Merge pull request #266 from invopop/release-0.71
Release 0.71
2 parents a651d82 + 011a8af commit 549c3b8

File tree

3 files changed

+51
-3
lines changed

3 files changed

+51
-3
lines changed

CHANGELOG.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Change Log
2+
3+
All notable changes to GOBL will be documented in this file.
4+
5+
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.
6+
7+
## [Unreleased] - yyyy-mm-dd
8+
9+
Here we write upgrading notes for brands. It's a team effort to make them as
10+
straightforward as possible.
11+
12+
### Added
13+
14+
- [PROJECTNAME-XXXX](http://tickets.projectname.com/browse/PROJECTNAME-XXXX)
15+
MINOR Ticket title goes here.
16+
- [PROJECTNAME-YYYY](http://tickets.projectname.com/browse/PROJECTNAME-YYYY)
17+
PATCH Ticket title goes here.
18+
19+
### Changed
20+
21+
### Fixed
22+
23+
## [v0.71.0] - 2024-04-08
24+
25+
New number formatting support! Expect some possible breaking SDK changes with the `num` packages. No significant schema changes.
26+
27+
### Added
28+
29+
- This CHANGELOG.md file (finally!)
30+
- Swiss (CH) tax regime.
31+
- Austrian (AT) tax regime.
32+
- `num` package now provides advanced number formatting.
33+
- `currency` provides "definitions" loaded from JSON with support for formatting.
34+
- Polish (PL) correction and preceding validation.
35+
- Polish (PL) header stamps for QR code.
36+
37+
### Changed
38+
39+
- `num` package refactored so that `num.Percentage` is independent from `num.Amount`.
40+
41+
### Fixed
42+
43+
- Minor fixes around tax regime definitions.
44+
- [invopop/yaml](https://github.com/invopop/yaml) upgraded.
45+
46+
## [v0.70.1] - 2024-03-25
47+
48+
- Last version before CHANGELOG.md.

regimes/pl/pl.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
// KSeF official codes to include.
1515
const (
16-
StampProviderKSeF cbc.Key = "ksef-id"
16+
StampProviderKSeFID cbc.Key = "ksef-id"
1717
StampProviderKSeFHash cbc.Key = "ksef-hash"
1818
StampProviderKSeFQR cbc.Key = "ksef-qr"
1919
)
@@ -54,7 +54,7 @@ func New() *tax.Regime {
5454
},
5555
ReasonRequired: true,
5656
Stamps: []cbc.Key{
57-
StampProviderKSeF,
57+
StampProviderKSeFID,
5858
},
5959
Extensions: []cbc.Key{
6060
ExtKeyKSeFEffectiveDate,

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

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

0 commit comments

Comments
 (0)