From 800174d0a5a998ee99b785736c58a6342e79773d Mon Sep 17 00:00:00 2001 From: Mik Mueller <83001409+MikMuellerDev@users.noreply.github.com> Date: Thu, 3 Nov 2022 21:42:52 +0100 Subject: [PATCH] Bump version to `0.4.2`, write `CHANGELOG.md` --- Makefile | 2 +- README.md | 4 ++-- docker-compose.yml | 2 +- docker/container/Dockerfile | 2 +- docker/container/motd | 2 +- docs/CHANGELOG.md | 9 ++++++--- main.go | 2 +- web/package-lock.json | 4 ++-- web/package.json | 2 +- 9 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 1ea2bf65..7c6e8ae7 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.4.1 +version := 0.4.2 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 69bf2546..1664169f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Smarthome -**Version**: `0.4.1` +**Version**: `0.4.2` 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.4.1* +*Screenshot of the Dashboard in version 0.4.2* ![](https://raw.githubusercontent.com/smarthome-go/docs/main/server/screenshots/dashboard.png) diff --git a/docker-compose.yml b/docker-compose.yml index f6b4bcf9..aa40343b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: smarthome: - image: mikmuellerdev/smarthome:0.4.1 + image: mikmuellerdev/smarthome:0.4.2 container_name: smarthome hostname: smarthome depends_on: diff --git a/docker/container/Dockerfile b/docker/container/Dockerfile index 1786789a..8deeb288 100644 --- a/docker/container/Dockerfile +++ b/docker/container/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3 LABEL author="MikMuellerDev" -LABEL version="0.4.1" +LABEL version="0.4.2" COPY ./cache /app diff --git a/docker/container/motd b/docker/container/motd index be5c25e1..0f0d86e6 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.4.1 + ### ### Version : 0.4.2 ### ### ### ### |# #########@ | diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index cbde4474..4c59dc2a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,8 @@ -## Changelog for v0.4.1 +## Changelog for v0.4.2 ### Bugfixes -- Removed useless debug prints -- Fixed misleading success indicators when using Homescript via the API + +- Removed more debug print statements +- Upgraded to Homescript 2.0.7, which brings following changes: + - Fixed function import in the analyzer + - Improved import cycle error display- diff --git a/main.go b/main.go index a2fc293c..645187ad 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.4.1" + utils.Version = "0.4.2" startTime := time.Now() diff --git a/web/package-lock.json b/web/package-lock.json index 7d1df351..0cf5855c 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "smarthome-web", - "version": "0.4.1", + "version": "0.4.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "smarthome-web", - "version": "0.4.1", + "version": "0.4.2", "license": "GPL-2.0-only", "dependencies": { "@codemirror/basic-setup": "^0.20.0", diff --git a/web/package.json b/web/package.json index ffa6c5b5..f0ced42e 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "smarthome-web", - "version": "0.4.1", + "version": "0.4.2", "description": "Web interface for Smarthome", "author": "MikMuellerDev", "contributors": [