Skip to content

Commit

Permalink
Bump version to 0.2.3, write CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Sep 2, 2022
1 parent e029bf2 commit bbf430d
Show file tree
Hide file tree
Showing 9 changed files with 23 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.2.2
version := 0.2.3

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.2.2`
**Version**: `0.2.3`

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

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.2.2
### ### Version : 0.2.3
### ###
### ###
|# #########@ |
Expand Down
17 changes: 14 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## Changelog for v0.2.2
## Changelog for v0.2.3

### Bugfixes
- Fixed major bug in internal configuration handling
- Fixed broken setup when using a database which was set by environment variables
#### Web-GUI
- The Homescript toggle settings are now marginally smaller, which allows a better display on mobile devices
- Renamed the `Automations` toggle of Homescripts to `Show Selection` for a more concise description
- Added a helper text which describes why there are no Homescripts in the scheduler target selection
- Fixed misalignment of the reload button at the top of the scheduler page
- Added a missing header title to the Homescript manager page
- Cleaned up some potential buggy code in the Homescript manager page
- Temporarily pinned the version a broken UI library component

#### Server & Backend
- Added a missing `sysctl` entry to the exampl `docker-compose.yml` file
- This allows the Homescript `ping` function to be used inside a Smarthome Docker container
- Fixed a bad log formatting in the server
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.2.2"
utils.Version = "0.2.3"

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

0 comments on commit bbf430d

Please sign in to comment.