From 19cd168132a9b29d953a77be16849af16127e8ec Mon Sep 17 00:00:00 2001 From: Vladimir Simakhin Date: Sun, 2 Jun 2024 10:17:13 +0200 Subject: [PATCH] version ++ --- CHANGELOG.md | 2 +- README.md | 2 +- app/main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e22d2b..0a6aecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## [2.37.0] - 02.06.2024 - Update: Session manager now stores tokens in the database instead of memory. In this case it's possible to run the application in the Cloud platforms (AWS ECS, Google Cloud Run, Kubernetes) without always keeping it live and active. diff --git a/README.md b/README.md index fa185c8..c359a83 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ You also can easily export all flight records into EASA style pdf format, print # Changelog -## [Unreleased] +## [2.37.0] - 02.06.2024 - Update: Session manager now stores tokens in the database instead of memory. In this case it's possible to run the application in the Cloud platforms (AWS ECS, Google Cloud Run, Kubernetes) without always keeping it live and active. diff --git a/app/main.go b/app/main.go index 54dfb16..2bc597f 100644 --- a/app/main.go +++ b/app/main.go @@ -20,7 +20,7 @@ import ( ) const ( - version = "2.36.0" + version = "2.37.0" infoLogPrefix = "INFO\t" errorLogPrefix = "ERROR\t"