Skip to content

Commit b336d68

Browse files
authored
Merge pull request #315 from invopop/release-0.81
Release 0.81
2 parents 79e1798 + d205e54 commit b336d68

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
runs-on: ubuntu-latest
77

88
steps:
9+
- name: Check out code
10+
uses: actions/checkout@v3
11+
912
- name: Set up Go
10-
uses: actions/setup-go@v1
13+
uses: actions/setup-go@v4
1114
with:
12-
go-version: "1.18"
15+
go-version-file: "go.mod"
1316
id: go
1417

15-
- name: Check out code
16-
uses: actions/checkout@v2
17-
1818
- name: Install Dependencies
1919
env:
2020
GOPROXY: https://proxy.golang.org,direct

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to GOBL will be documented in this file.
44

55
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.
66

7-
## [vX.XX.X] - XXXX-XX-XX
7+
## [v0.81.0] - 2024-07-17
88

99
### Added
1010

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

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

0 commit comments

Comments
 (0)