Skip to content

Commit fa33cbe

Browse files
committed
Write changelog for v0.0.37-fix.1
1 parent eccf210 commit fa33cbe

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
appname := smarthome
22
workingdir := smarthome
33
sources := $(wildcard *.go)
4-
version := 0.0.37
4+
version := 0.0.37-fix.1
55

66
build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
77
tar = mkdir -p build && cd ../ && tar -cvzf ./$(appname)_$(1)_$(2).tar.gz $(workingdir)/$(appname) $(workingdir)/web/dist $(workingdir)/web/html $(workingdir)/resources && mv $(appname)_$(1)_$(2).tar.gz $(workingdir)/build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Smarthome
2-
**Version**: `0.0.37`
2+
**Version**: `0.0.37-fix.1`
33

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

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
smarthome:
4-
image: mikmuellerdev/smarthome:0.0.37
4+
image: mikmuellerdev/smarthome:0.0.37-fix.1
55
container_name: smarthome
66
hostname: smarthome
77
depends_on:

docker/container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3
22

33
LABEL author="MikMuellerDev"
4-
LABEL version="0.0.37"
4+
LABEL version="0.0.37-fix.1"
55

66
COPY ./cache /app
77

docker/container/motd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
######## Smarthome: A completely self-built Smarthome-system written in Go
22
### ### Issues : https://github.com/smarthome-go/smarthome/issues
3-
### ### Version : 0.0.37
3+
### ### Version : 0.0.37-fix.1
44
### ###
55
### ###
66
|# #########@ |

docs/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## Changelog for v0.0.37
1+
## Changelog for v0.0.37-fix.1
22

33
### Homescript
44
- Added functions for executing and linting Homescript via the script's id
55
- Added API endpoints and routes for those functions
6+
- Fixed messy and broken Homescript API functions

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var port = 8082 // Default port on which the server listens, can be overwritten
3232

3333
func main() {
3434
// Do not change manually, use the `make version` command instead
35-
utils.Version = "0.0.37"
35+
utils.Version = "0.0.37-fix.1"
3636

3737
startTime := time.Now()
3838

web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smarthome-web",
3-
"version": "0.0.37",
3+
"version": "0.0.37-fix.1",
44
"description": "Web interface for Smarthome",
55
"author": "MikMuellerDev",
66
"contributors": [

0 commit comments

Comments
 (0)