From 9f6df1ff5a021095c6ee56561b3bd42b478bc519 Mon Sep 17 00:00:00 2001 From: "Tibor Bossanyi (Freelancer)" Date: Sun, 5 Sep 2021 14:28:52 +0200 Subject: [PATCH] API 1.0.48 --- build.gradle.kts | 2 +- data/db/update_1_0_48.sql | 5 +++++ src/main/resources/application-prod.properties | 2 +- src/main/resources/application.properties | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 data/db/update_1_0_48.sql diff --git a/build.gradle.kts b/build.gradle.kts index 496d0ee..bc046f1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "com.aitrainer" -version = "1.0.47" +version = "1.0.48" java.sourceCompatibility = JavaVersion.VERSION_1_8 repositories { diff --git a/data/db/update_1_0_48.sql b/data/db/update_1_0_48.sql new file mode 100644 index 0000000..e7825c2 --- /dev/null +++ b/data/db/update_1_0_48.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +UPDATE configuration set config_value = "1.0.48", date_change=CURRENT_DATE WHERE config_key = "db_version"; + +COMMIT; diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index f540ed8..170fa97 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -17,6 +17,6 @@ logging.config=classpath:logback-spring.xml logging.file=logs # if the database structure has been changed, increment this version number -application.version=1.0.47 +application.version=1.0.48 jwt.secret=aitrainer \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 70b5aa2..29924a9 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -17,7 +17,7 @@ logging.config=classpath:logback-spring.xml logging.file=logs # if the database structure has been changed, increment this version number -application.version=1.0.47 +application.version=1.0.48 jwt.secret=aitrainer jasypt.encryptor.password=Tibor