From 68a437f724c3f6234de0bacea74bf85114743aa3 Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Mon, 3 May 2021 22:33:54 +0200 Subject: [PATCH] bumping new version v1.6.0 updating CHANGELOG --- CHANGELOG.md | 6 +++++- src/webserver.go | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce5c2c6..180b190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ ## [Unreleased] +## [1.6.0] - 2021-05-03 + ### Added - doing persistant mqtt connection for status collection (#16 by @LelandSindt and #21 by @MattBrittan) - adding randomized string to mqtt client (#15 by @LelandSindt) ### Changed +- fixing sql error when FastChargerBrand is null (#39 by @alecdoconnor) - updating workflow for stale issues/PRs ### Removed @@ -164,7 +167,8 @@ ## [1.0.0] - 2021-02-15 -[Unreleased]: https://github.com/tobiasehlert/teslamateapi/compare/v1.5.0...HEAD +[Unreleased]: https://github.com/tobiasehlert/teslamateapi/compare/v1.6.0...HEAD +[1.6.0]: https://github.com/tobiasehlert/teslamateapi/compare/v1.5.0...v1.6.0 [1.5.0]: https://github.com/tobiasehlert/teslamateapi/compare/v1.4.9...v1.5.0 [1.4.9]: https://github.com/tobiasehlert/teslamateapi/compare/v1.4.8...v1.4.9 [1.4.8]: https://github.com/tobiasehlert/teslamateapi/compare/v1.4.7...v1.4.8 diff --git a/src/webserver.go b/src/webserver.go index feb42c1..826fbb9 100644 --- a/src/webserver.go +++ b/src/webserver.go @@ -16,7 +16,7 @@ import ( // setting TeslaMateApi version number // TODO: get the value from git-tag later.. -var apiVersion = "1.5.0" +var apiVersion = "1.6.0" // defining db var var db *sql.DB