From 70385b0ecdc5033c1f1310521882b614103ee0df Mon Sep 17 00:00:00 2001 From: Mik Mueller <83001409+MikMuellerDev@users.noreply.github.com> Date: Wed, 21 Dec 2022 20:40:48 +0100 Subject: [PATCH] Bump version to `0.5.1`, write `CHANGELOG.md` --- Makefile | 2 +- README.md | 4 ++-- docker-compose.yml | 2 +- docker/container/Dockerfile | 2 +- docker/container/motd | 2 +- docs/CHANGELOG.md | 22 +++++----------------- main.go | 2 +- web/package-lock.json | 4 ++-- web/package.json | 2 +- 9 files changed, 15 insertions(+), 27 deletions(-) diff --git a/Makefile b/Makefile index 5cd34bcf..86288dd2 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ workingdir := smarthome sources := $(wildcard *.go) # Do not edit manually, use the `version` target to change the # version programmatically in all places -version := 0.5.0 +version := 0.5.1 build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4) # TODO: eliminate usage of workingdir diff --git a/README.md b/README.md index 85a5f005..0ecc0d88 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Smarthome -**Version**: `0.5.0` +**Version**: `0.5.1` A completely self-built Smarthome-system written in Go. @@ -29,5 +29,5 @@ A guide for getting started can be found [here](./docs/Quickstart.md). ## Showcase A comprehensive list of screenshots can be found [here](https://github.com/smarthome-go/docs/blob/main/server/screenshots/README.md) -*Screenshot of the Dashboard in version 0.5.0* +*Screenshot of the Dashboard in version 0.5.1* ![](https://raw.githubusercontent.com/smarthome-go/docs/main/server/screenshots/dashboard.png) diff --git a/docker-compose.yml b/docker-compose.yml index b31c831b..9482b643 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: smarthome: - image: mikmuellerdev/smarthome:0.5.0 + image: mikmuellerdev/smarthome:0.5.1 container_name: smarthome hostname: smarthome depends_on: diff --git a/docker/container/Dockerfile b/docker/container/Dockerfile index 22067b96..c4edef7b 100644 --- a/docker/container/Dockerfile +++ b/docker/container/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3 LABEL author="MikMuellerDev" -LABEL version="0.5.0" +LABEL version="0.5.1" COPY ./cache /app diff --git a/docker/container/motd b/docker/container/motd index f2f34ba7..412ddf58 100644 --- a/docker/container/motd +++ b/docker/container/motd @@ -1,6 +1,6 @@ ######## Smarthome: A completely self-built Smarthome-system written in Go ### ### Issues : https://github.com/smarthome-go/smarthome/issues - ### ### Version : 0.5.0 + ### ### Version : 0.5.1 ### ### ### ### |# #########@ | diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0f4ee61f..1412d87f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,20 +1,8 @@ -## Changelog for v0.5.0 - -### Feature Additions - -- Added a `factory reset` button to the system page +## Changelog for v0.5.1 ### Bugfixes -- Output of `print` will now also be streamed in the web-editor terminal -- Fixed a backend issue which caused errors when modifying automations whilst - the automation system was disabled -- Once-disabled automations are now filtered out of the automations overview -- Dashboard tiles are now shown depending on the user's permissions -- Fixed the HMS argument prompt display when bool / yes-no is used -- HMS: Fixed the display of objects using the `debug` function - -### Code Cleanup - -- The Homescript web-editor now uses the official `codemirror-lang-homescript` - package +- The Homescript web-editor now uses the correct set of builtin functions & + variables +- The web-ui now works again due to a fixed issue in the build-process of the + web-ui diff --git a/main.go b/main.go index 84fc9b1e..010769a7 100644 --- a/main.go +++ b/main.go @@ -35,7 +35,7 @@ var port uint16 = 8082 func main() { // Do not change the version manually, use the `make version` command instead - utils.Version = "0.5.0" + utils.Version = "0.5.1" startTime := time.Now() diff --git a/web/package-lock.json b/web/package-lock.json index b3fbb2d7..e20e149f 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "smarthome-web", - "version": "0.5.0", + "version": "0.5.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "smarthome-web", - "version": "0.5.0", + "version": "0.5.1", "license": "GPL-2.0-only", "dependencies": { "@codemirror/commands": "^6.1.2", diff --git a/web/package.json b/web/package.json index b408e8a4..12ea3526 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "smarthome-web", - "version": "0.5.0", + "version": "0.5.1", "description": "Web interface for Smarthome", "author": "MikMuellerDev", "contributors": [