Skip to content

Commit

Permalink
chore: Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Sep 2, 2023
1 parent b70b60f commit 0398799
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Changelog for v0.4.0
## Changelog for v0.5.0

### Bugfixes

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Node (formerly *Smarthome-hw*)
**Version**: `0.4.0`
**Version**: `0.5.0`
Hardware interface for the Smarthome server

### Purpose
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0398799

Please sign in to comment.