File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed
Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1- ## Changelog for v0.3.1
1+ ## Changelog for v0.4.0
22
33### Bugfixes
4- - Fixed SegFaults due to concurrent acces to ` github.com/stianeikeland/go-rpio ` (the GPIO library this project uses)
5- - Those bugs would occur if using a ` switchRF ` after a ` switchGPIO `
4+
5+ - (Breaking) Health check now also requires authentication and therefore
6+ validates the node's token
Original file line number Diff line number Diff line change 11appname := smarthome-hw
2- version := 0.3.1
2+ version := 0.4.0
33sources := $(wildcard * .go)
44
55build = mkdir -p smarthome-hw-bin && cp -r dist/* smarthome-hw-bin && GOOS=$(1 ) GOARCH=$(2 ) go build -o ./smarthome-hw-bin/$(appname )$(3 ) $(4 )
Original file line number Diff line number Diff line change 11# Node (formerly * Smarthome-hw* )
2- ** Version** : ` 0.3.1 `
2+ ** Version** : ` 0.4.0 `
33 Hardware interface for the Smarthome server
44
55 ### Purpose
Original file line number Diff line number Diff line change @@ -15,3 +15,5 @@ require (
1515 github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
1616 golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
1717)
18+
19+ replace github.com/smarthome-go/rpirf => ../rpirf/
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ func main() {
1717 if err := config .ReadConfigFile (); err != nil {
1818 log .Fatal ("Failed to read config file: " , err .Error ())
1919 }
20- config .Version = "0.3.1 "
20+ config .Version = "0.4.0 "
2121 log .Debug ("Successfully read config file" )
2222
2323 r := api .NewRouter ()
You can’t perform that action at this time.
0 commit comments