Skip to content

Commit

Permalink
Bump version to v0.0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed May 9, 2022
1 parent 62d535c commit 85b3eab
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
appname := smarthome
workingdir := smarthome
sources := $(wildcard *.go)
version := 0.0.26-beta-rc.4
version := 0.0.26

build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
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
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.0.26-beta-rc.4`
**Version**: `0.0.26`

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.0.26-beta-rc.4
image: mikmuellerdev/smarthome:0.0.26
container_name: smarthome
depends_on:
- "smarthome-mariadb"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3

LABEL author="MikMuellerDev"
LABEL version="0.0.26-beta-rc.4"
LABEL version="0.0.26"

COPY ./app /app

Expand Down
2 changes: 1 addition & 1 deletion docker/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.0.26-beta-rc.4
### ### Version : 0.0.26
### ###
### ###
|# #########@ |
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var port = 8082 // Port used during development, can be overridden by config file or environment variables

func main() {
utils.Version = "0.0.26-beta-rc.4"
utils.Version = "0.0.26"

startTime := time.Now()
// Create logger
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.0.26-beta-rc.4",
"version": "0.0.26",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit 85b3eab

Please sign in to comment.