Skip to content

Commit 6d28d91

Browse files
committed
Bump version to 0.1.1, write CHANGELOG.md
1 parent c161da4 commit 6d28d91

File tree

9 files changed

+13
-27
lines changed

9 files changed

+13
-27
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ workingdir := smarthome
44
sources := $(wildcard *.go)
55
# Do not edit manually, use the `version` target to change the
66
# version programmatically in all places
7-
version := 0.1.0
7+
version := 0.1.1
88

99
build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
1010
# TODO: eliminate usage of workingdir

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.1.0`
2+
**Version**: `0.1.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.1.0
4+
image: mikmuellerdev/smarthome:0.1.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.1.0"
4+
LABEL version="0.1.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.1.0
3+
### ### Version : 0.1.1
44
### ###
55
### ###
66
|# #########@ |

docs/CHANGELOG.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
1-
## Changelog for v0.1.0
1+
## Changelog for v0.1.1
22

3-
*Note*: This is a significant release because it marks the official end of active, breaking development.
4-
Changes from here will follow the `SemVer` guidelines and will try to reduce breaking changes as much as possible.
5-
6-
### Web-UI
7-
- Removed debug-logs from the web-UI
8-
- Removed the `material-symbols` dependency due to irrational network-loads
9-
- Automatically detect nighttime and use weather icon accordingly
10-
- Cleaned the Web-UI code and removed unneeded parts
11-
12-
### Homescript
13-
- Add workspaces which allow visual groups of coherent scripts
14-
- The URL of the HMS-editor is now changed reactively which allows sharing the URL
15-
- The HMS-execution via the `F-X` keys is now prevented when a script is already running
16-
- Improved the HMS editor's mobile layout
17-
18-
### Server
19-
- The sunrise & sunset time is now included in every weather response
3+
### Bugfixes
4+
- Fixed multiple bugs which affect the visual display of Homescript workspaces in the Homescript manager page
5+
- Fixed a bug which affects the Homescript editor

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var port uint16 = 8082
3535

3636
func main() {
3737
// Do not change the version manually, use the `make version` command instead
38-
utils.Version = "0.1.0"
38+
utils.Version = "0.1.1"
3939

4040
startTime := time.Now()
4141

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.1.0",
3+
"version": "0.1.1",
44
"description": "Web interface for Smarthome",
55
"author": "MikMuellerDev",
66
"contributors": [

0 commit comments

Comments
 (0)