From b3ca4468cdad2e36eda575adeea03e111d2b6902 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sun, 16 Jan 2022 11:21:58 +0900 Subject: [PATCH] Release 4.37.2 (#2970) --- CHANGELOG.md | 3 +++ README.md | 3 +++ build.sbt | 2 +- src/main/scala/gitbucket/core/GitBucketCoreModule.scala | 3 ++- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff2e238b8..70ffc06ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to the project will be documented in this file. +### 4.37.2 - 16 Jan 2022 +- Security fix + ### 4.37.1 - 14 Dec 2021 - Update gist-plugin and notification-plugin - Fix SSHCommand extension point for apache-sshd 2.x diff --git a/README.md b/README.md index b847e4676..620f8e9f6 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,9 @@ Support What's New in 4.37.x ------------- +### 4.37.2 - 16 Jan 2022 +- Security fix + ### 4.37.1 - 14 Dec 2021 - Update gist-plugin and notification-plugin - Fix SSHCommand extension point for apache-sshd 2.x diff --git a/build.sbt b/build.sbt index 27682d1de..c85ac3f67 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import com.jsuereth.sbtpgp.PgpKeys._ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.37.1" +val GitBucketVersion = "4.37.2" val ScalatraVersion = "2.8.2" val JettyVersion = "9.4.44.v20210927" val JgitVersion = "5.13.0.202109080827-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index aa388354c..a863c81da 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -121,5 +121,6 @@ object GitBucketCoreModule new Version("4.36.1"), new Version("4.36.2"), new Version("4.37.0", new LiquibaseMigration("update/gitbucket-core_4.37.xml")), - new Version("4.37.1") + new Version("4.37.1"), + new Version("4.37.2") )