Skip to content

Commit

Permalink
Merge pull request #327 from invopop/release-0.83
Browse files Browse the repository at this point in the history
Preparing Release 0.83
  • Loading branch information
samlown authored Jul 23, 2024
2 parents cbde5a8 + ddaac2c commit 6469512
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.

## [vX.XX.X] - XXXX-XX-XX
## [v0.83.0] - 2024-07-23

### Added

Expand Down
46 changes: 42 additions & 4 deletions data/regimes/co.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@
"pattern": "^\\d{5}$"
},
{
"key": "co-dian-correction",
"key": "co-dian-credit-code",
"name": {
"en": "DIAN Correction Code",
"es": "Código de corrección DIAN"
"en": "DIAN correction code for credit notes",
"es": "Código de corrección DIAN para notas de crédito"
},
"codes": [
{
Expand Down Expand Up @@ -134,6 +134,43 @@
}
}
]
},
{
"key": "co-dian-debit-code",
"name": {
"en": "DIAN correction code for debit notes",
"es": "Código de corrección DIAN para notas de débito"
},
"codes": [
{
"code": "1",
"name": {
"en": "Interest",
"es": "Intereses"
}
},
{
"code": "2",
"name": {
"en": "Pending charges",
"es": "Gastos por cobrar"
}
},
{
"code": "3",
"name": {
"en": "Change in value",
"es": "Cambio del valor"
}
},
{
"code": "4",
"name": {
"en": "Other",
"es": "Otros"
}
}
]
}
],
"identity_keys": [
Expand Down Expand Up @@ -236,7 +273,8 @@
"debit-note"
],
"extensions": [
"co-dian-correction"
"co-dian-credit-code",
"co-dian-debit-code"
],
"reason_required": true,
"stamps": [
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.82.0"
const VERSION Version = "v0.83.0"

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

0 comments on commit 6469512

Please sign in to comment.