Skip to content

Commit

Permalink
updated go 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronSaikovski committed Aug 15, 2024
1 parent 0a72bee commit 5ab05a8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 19 deletions.
Binary file modified .DS_Store
Binary file not shown.
31 changes: 16 additions & 15 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,32 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com

# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

version: 2

before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...

builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
- darwin
main: ./cmd/gogoodwe

archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of uname.
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
Expand All @@ -27,20 +36,12 @@ archives:
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
- goos: windows
format: zip

changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

# The lines beneath this are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
- "^docs:"
- "^test:"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">

## GoGoodwe v3.0.0
## GoGoodwe v3.0.1

A command line tool to query the GOODWE SEMS Solar Inverter APIs - written in 100% Go.

Expand All @@ -11,7 +11,7 @@ A command line tool to query the GOODWE SEMS Solar Inverter APIs - written in 10

### Software Requirements:

- [Go v1.22.X](https://www.go.dev/dl/) or later needs to be installed to build the code.
- [Go v1.23.0](https://www.go.dev/dl/) or later needs to be installed to build the code.
- [Azure CLI tools](https://learn.microsoft.com/en-us/cli/azure/) 2.50 or later
- [Taskfile](https://taskfile.dev/) to run the build chain commands listed below.

Expand Down
2 changes: 1 addition & 1 deletion cmd/gogoodwe/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.0.0
v3.0.1
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/AaronSaikovski/gogoodwe

go 1.22.5
go 1.23.0

require (
github.com/alexflint/go-arg v1.5.1
Expand Down

0 comments on commit 5ab05a8

Please sign in to comment.