Skip to content

Commit

Permalink
Bump version to v0.0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed May 15, 2022
1 parent 24fdfc6 commit 496b6f5
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 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.27-beta
version := 0.0.27

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.27-beta`
**Version**: `0.0.27`

A completely self-built Smarthome-system written in Go.

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.27-beta"
LABEL version="0.0.27"

COPY ./app /app

Expand Down
2 changes: 1 addition & 1 deletion docker/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.27-beta
image: mikmuellerdev/smarthome:0.0.27
container_name: smarthome
depends_on:
- "smarthome-mariadb"
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.27-beta
### ### Version : 0.0.27
### ###
### ###
|# #########@ |
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.27-beta"
utils.Version = "0.0.27"

startTime := time.Now()
// Create logger
Expand Down
2 changes: 1 addition & 1 deletion update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
main_go_path = "main.go"
readme_path = "README.md"
makefile_path = "Makefile"
docker_compose_path = "docker-compose.yml"
docker_compose_path = "docker/docker-compose.yml"

with open(main_go_path, "r") as main_go:
content = main_go.read()
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.27-beta",
"version": "0.0.27",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit 496b6f5

Please sign in to comment.