Skip to content

Commit

Permalink
Bump version to 0.1.1, write CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Aug 20, 2022
1 parent c161da4 commit 6d28d91
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 27 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.1.0
version := 0.1.1

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.1.0`
**Version**: `0.1.1`

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.1.0
image: mikmuellerdev/smarthome:0.1.1
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.1.0"
LABEL version="0.1.1"

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.1.0
### ### Version : 0.1.1
### ###
### ###
|# #########@ |
Expand Down
22 changes: 4 additions & 18 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
## Changelog for v0.1.0
## Changelog for v0.1.1

*Note*: This is a significant release because it marks the official end of active, breaking development.
Changes from here will follow the `SemVer` guidelines and will try to reduce breaking changes as much as possible.

### Web-UI
- Removed debug-logs from the web-UI
- Removed the `material-symbols` dependency due to irrational network-loads
- Automatically detect nighttime and use weather icon accordingly
- Cleaned the Web-UI code and removed unneeded parts

### Homescript
- Add workspaces which allow visual groups of coherent scripts
- The URL of the HMS-editor is now changed reactively which allows sharing the URL
- The HMS-execution via the `F-X` keys is now prevented when a script is already running
- Improved the HMS editor's mobile layout

### Server
- The sunrise & sunset time is now included in every weather response
### Bugfixes
- Fixed multiple bugs which affect the visual display of Homescript workspaces in the Homescript manager page
- Fixed a bug which affects the Homescript editor
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.1.0"
utils.Version = "0.1.1"

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.1.0",
"version": "0.1.1",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit 6d28d91

Please sign in to comment.