Skip to content

Commit

Permalink
Release v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
twystd committed Aug 1, 2022
1 parent 49623a7 commit e2bc9cb
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 15 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# CHANGELOG

## [0.8.1](https://github.com/uhppoted/uhppote-cli/releases/tag/v0.8.1) - 2022-08-01

### Changed
1. Maintenance release for compatiblity with [uhppote-core](https://github.com/uhppoted/uhppote-core) v0.8.1


## [0.8.0](https://github.com/uhppoted/uhppote-cli/releases/tag/v0.8.0) - 2022-07-01

### Changed
1. Maintenance release for compatiblity with [uhppote-core](https://github.com/uhppoted/uhppote-core) v0.8.0


### Changed
1. Maintenance release for compatibility with [uhppote-core](https://github.com/uhppoted/uhppote-core)
v0.8.0
Expand Down Expand Up @@ -58,4 +68,4 @@

### Changed
1. Added validation for `bind`, `broadcast` and `listen` ports to mitigate common misconfigurations.
2. Corrected typo in _README_
2. Corrected typo in _README_
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ build-all: test vet
mkdir -p dist/$(DIST)/darwin
mkdir -p dist/$(DIST)/linux
mkdir -p dist/$(DIST)/arm7
env GOOS=linux GOARCH=amd64 go build -trimpath -o dist/$(DIST)/linux ./...
env GOOS=linux GOARCH=arm GOARM=7 go build -trimpath -o dist/$(DIST)/arm7 ./...
env GOOS=darwin GOARCH=amd64 go build -trimpath -o dist/$(DIST)/darwin ./...
env GOOS=windows GOARCH=amd64 go build -trimpath -o dist/$(DIST)/windows ./...
env GOOS=linux GOARCH=amd64 GOWORK=off go build -trimpath -o dist/$(DIST)/linux ./...
env GOOS=linux GOARCH=arm GOARM=7 GOWORK=off go build -trimpath -o dist/$(DIST)/arm7 ./...
env GOOS=darwin GOARCH=amd64 GOWORK=off go build -trimpath -o dist/$(DIST)/darwin ./...
env GOOS=windows GOARCH=amd64 GOWORK=off go build -trimpath -o dist/$(DIST)/windows ./...

release: update-release build-all
find . -name ".DS_Store" -delete
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ savings changes.

| *Version* | *Description* |
| --------- | -------------------------------------------------------------------------------------------------- |
| v0.8.1 | Maintenance release for version compatibility with `uhppote-core` v0.8.1 |
| v0.8.0 | Maintenance release for version compatibility with `uhppote-core` v0.8.0 |
| v0.7.3 | Maintenance release for version compatibility with `uhppote-core` v0.7.3 |
| v0.7.2 | Replaced event rollover with `overwritten` event handling |
Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.7.3
# TODO

### IN PROGRESS

Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/uhppoted/uhppote-cli
go 1.18

require (
github.com/uhppoted/uhppote-core v0.8.0
github.com/uhppoted/uhppoted-lib v0.8.0
github.com/uhppoted/uhppote-core v0.8.1
github.com/uhppoted/uhppoted-lib v0.8.1
)

require golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b // indirect
require golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/uhppoted/uhppote-core v0.8.0 h1:Bxv4yIk42V+iiOE9gA6y9VkXgOSCXZf/yKW4Qrib0V0=
github.com/uhppoted/uhppote-core v0.8.0/go.mod h1:BkuyOjePntC6Mf9+xuF/u9dliAxbuGw3euCVt/B3OOw=
github.com/uhppoted/uhppoted-lib v0.8.0 h1:TYG69u1+MhKW3x2dnF5q5WwjiEbTIkGG3bLz7TBxCr8=
github.com/uhppoted/uhppoted-lib v0.8.0/go.mod h1:+6t4CCOf5uZAJwkWs/xGRG3WxpZOVFnwkSMmJr2gaXE=
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b h1:2n253B2r0pYSmEV+UNCQoPfU/FiaizQEK5Gu4Bq4JE8=
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
github.com/uhppoted/uhppote-core v0.8.1 h1:5jnn0y8CCcL4sHezs966xrQfUN7olHunzWgKMEzvyXw=
github.com/uhppoted/uhppote-core v0.8.1/go.mod h1:BkuyOjePntC6Mf9+xuF/u9dliAxbuGw3euCVt/B3OOw=
github.com/uhppoted/uhppoted-lib v0.8.1 h1:lMsNTYN4VXjCSgxgsiUXasJ6AauCCjod55bZpVR5DmM=
github.com/uhppoted/uhppoted-lib v0.8.1/go.mod h1:19sXIK1ABuhqtpEgQMrxp1LakKrV2QN3XN5ngLREcn8=
golang.org/x/sys v0.0.0-20220731174439-a90be440212d h1:Sv5ogFZatcgIMMtBSTTAgMYsicp25MXBubjXNDKwm80=
golang.org/x/sys v0.0.0-20220731174439-a90be440212d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 comments on commit e2bc9cb

Please sign in to comment.