Skip to content

Commit

Permalink
Bump version to 0.0.47, write changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Jul 11, 2022
1 parent f004d66 commit 7489261
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.46
version := 0.0.47

build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
# TODO: eliminate usage of workingdir
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Smarthome
**Version**: `0.0.46`
**Version**: `0.0.47`

A completely self-built Smarthome-system written in Go.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
smarthome:
image: mikmuellerdev/smarthome:0.0.46
image: mikmuellerdev/smarthome:0.0.47
container_name: smarthome
hostname: smarthome
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion docker/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3

LABEL author="MikMuellerDev"
LABEL version="0.0.46"
LABEL version="0.0.47"

COPY ./cache /app

Expand Down
2 changes: 1 addition & 1 deletion docker/container/motd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
######## Smarthome: A completely self-built Smarthome-system written in Go
### ### Issues : https://github.com/smarthome-go/smarthome/issues
### ### Version : 0.0.46
### ### Version : 0.0.47
### ###
### ###
|# #########@ |
Expand Down
20 changes: 7 additions & 13 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
## Changelog for v0.0.46

## Changelog for v0.0.47

### Homescript
- Fixed argument container overflow in GUI
- Fixed bug which caused the argument prompts to not open
- Added the `id` label to the switch selection in argument prompt
- Fixed bug which caused the *run* and *lint* button to trigger the opposite action

### Miscellaneous
- Refactored and reviewed portions of the backend code
- Removed one possibility for a server *panic* during startup
- Upgraded the built-in CLI to a current version
- Increased Makefile compatibility
- Updated Homescript to the newest version
- Added a global *manager* to the Homescript module
- The manager orchestrates the way Homescripts are executed and terminated
- As of Homescript release `v0.13.0`, sigTerm can be used to terminate a script's execution at any point in time
- The API routes `/api/homescript/kill/script/{id}` and `/api/homescript/kill/job/{id}` can now be used to terminate Homescript jobs.
- Added a visual *cancel* button to the Homescript editor GUI which terminates all jobs running the currently selected script
- Added minor tweaks to the HMS editor GUI which increase stability and overall consistency
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.46"
utils.Version = "0.0.47"

startTime := time.Now()

Expand Down
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smarthome-web",
"version": "0.0.46",
"version": "0.0.47",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit 7489261

Please sign in to comment.