Skip to content

Commit

Permalink
Repraring release
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Jul 23, 2024
1 parent bc7c686 commit f6c69ab
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Automatically tag a merge with master, or build a new image from the tag.
#
# Secrets required:
# * `DO_TOKEN` - DigitalOcean private token
# * `DO_REGISTRY_NAME` - DigitalOcean name of the registry
# * `GO_MOD_USER` - Machine username to read private repos
# * `GO_MOD_PASS` - Machine password to read private repos
# * `GITHUB_TOKEN` - A GitHub token with access to the repository.
# * `AWS_ACCESS_KEY_ID` - An AWS access key with write access to the CDN bucket.
# * `AWS_SECRET_ACCESS_KEY` - The secret for the AWS access key
# * `NPM_TOKEN` - An NPM token with access to the package.
#

name: Release
Expand All @@ -19,8 +19,9 @@ on:

jobs:
tag-build-publish:
name: Tag
runs-on: ubuntu-20.04
name: Tag & Release
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ archives:
builds:
- gobl.cli
format: tar.gz
name_template: "gobl.cli_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
name_template: "gobl.{{ .Version }}_{{ .Os }}_{{ .Arch }}"
wrap_in_directory: true
- id: wasm
builds:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.110.0] - 2024-07-23

Multiple version upgrade after merging the [gobl.cli](https://github.com/invopop/gobl.cli) project directly here instead.

### Added

- CLI: move the command line interface and wasm binary support directly into GOBL.

## [v0.83.0] - 2024-07-23

### Added
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.83.0"
const VERSION Version = "v0.110.0"

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

0 comments on commit f6c69ab

Please sign in to comment.