Skip to content

Commit

Permalink
Bump version to 0.2.0, write CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Aug 21, 2022
1 parent 635d1b5 commit db517b2
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 12 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.1
version := 0.2.0

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.1`
**Version**: `0.2.0`

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

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.1
### ### Version : 0.2.0
### ###
### ###
|# #########@ |
Expand Down
12 changes: 9 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Changelog for v0.1.1
## Changelog for v0.2.0

### 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
- Decrease label size of create-new HMS button in HMS manager page (*avoid text-wrapping on mobile*)
- Decreased label text ambiguity of the same create-new HMS button
- Fixed overflowing header when using too many HMS-workspaces
- Updated some `NPM` dependencies (*for the web-UI*)

### Additions
- Added the `/api/power/usage/all` API endpoint which returns all power-usage data since records started
- This endpoint is protected with normal API-authentication because it will cause some load on the server when requested
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.1"
utils.Version = "0.2.0"

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

0 comments on commit db517b2

Please sign in to comment.