From 729360c8b130b4dfce78726a52325f8be8a7dacb Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Thu, 23 Sep 2021 12:27:52 +0200 Subject: [PATCH] bumping new version v1.10.1 updating CHANGELOG --- CHANGELOG.md | 12 +++++++++++- src/webserver.go | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1d297c..4fd61ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] + +## [1.10.1] - 2021-09-23 + +### Changed +- bump golang from 1.16.5 to 1.17.1 (#90, #96, #103, #104, #107 by dependabot) +- bump github.com/gin-gonic/gin from 1.7.2 to 1.7.4 (#94, #100 by dependabot) +- bump github.com/lib/pq from 1.10.2 to 1.10.3 (#105 by dependabot) +- bump various workflow versions (#85, #86, #87, #89, #91, #101, #102, #106 by dependabot) + ## [1.10.0] - 2021-06-30 ### Added @@ -217,7 +226,8 @@ ## [1.0.0] - 2021-02-15 -[Unreleased]: https://github.com/tobiasehlert/teslamateapi/compare/v1.10.0...HEAD +[Unreleased]: https://github.com/tobiasehlert/teslamateapi/compare/v1.10.1...HEAD +[1.10.1]: https://github.com/tobiasehlert/teslamateapi/compare/v1.10.0...v1.10.1 [1.10.0]: https://github.com/tobiasehlert/teslamateapi/compare/v1.9.0...v1.10.0 [1.9.0]: https://github.com/tobiasehlert/teslamateapi/compare/v1.8.0...v1.9.0 [1.8.0]: https://github.com/tobiasehlert/teslamateapi/compare/v1.7.1...v1.8.0 diff --git a/src/webserver.go b/src/webserver.go index fab3c3f..120a93f 100644 --- a/src/webserver.go +++ b/src/webserver.go @@ -15,7 +15,7 @@ import ( // setting TeslaMateApi version number // TODO: get the value from git-tag later.. -var apiVersion = "1.10.0" +var apiVersion = "1.10.1" // defining db var var db *sql.DB