From 0398799d5ce0d06c4dccac201c009577701ce5e2 Mon Sep 17 00:00:00 2001 From: Mik Mueller <83001409+MikMuellerDev@users.noreply.github.com> Date: Sat, 2 Sep 2023 23:21:51 +0200 Subject: [PATCH] chore: Bump version to `0.5.0` --- CHANGELOG.md | 2 +- Makefile | 2 +- README.md | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7d99be..ae0c424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Changelog for v0.4.0 +## Changelog for v0.5.0 ### Bugfixes diff --git a/Makefile b/Makefile index 4f81dca..a7a6c77 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ appname := smarthome-hw -version := 0.4.0 +version := 0.5.0 sources := $(wildcard *.go) build = mkdir -p smarthome-hw-bin && cp -r dist/* smarthome-hw-bin && GOOS=$(1) GOARCH=$(2) go build -o ./smarthome-hw-bin/$(appname)$(3) $(4) diff --git a/README.md b/README.md index 932dfdb..7318b90 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Node (formerly *Smarthome-hw*) -**Version**: `0.4.0` +**Version**: `0.5.0` Hardware interface for the Smarthome server ### Purpose diff --git a/main.go b/main.go index 846b219..8d2899a 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ func main() { log.Error("Failed to read config file: ", err.Error()) return } - config.Version = "0.4.0" + config.Version = "0.5.0" log.Debug("Successfully read config file") r := api.NewRouter()