diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cddb04..a5ee4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All changes to the project will be documented in this file. +## 4.30.0 - xx Dec 2018 +- Automatic ChangeLog Summary generation for new Releases +- A lot of GitBucket Web API updates to increase compatibility with the GitHub API. +- Display of checkboxes in Markdown files in Git repositories +- A new extension point for plugins: anonymousAccessiblePaths +- Group support in the Gist Plugin +- Allow redirection to the Release Page from the Activity Timeline Page + ## 4.29.0 - 29 Sep 2018 - Official Docker image has been available - Enhance file edit and delete buttons of the repository viewer diff --git a/README.md b/README.md index a2e794e..0a26413 100644 --- a/README.md +++ b/README.md @@ -68,13 +68,14 @@ - If you can't find same question and report, send it to [gitter room](https://gitter.im/gitbucket/gitbucket) before raising an issue. - The highest priority of GitBucket is the ease of installation and API compatibility with GitHub, so your feature request might be rejected if they go against those principles. -What's New in 4.29.x +What's New in 4.30.x ------------- -### 4.29.0 - 29 Sep 2018 -- Official Docker image has been available -- Enhance file edit and delete buttons of the repository viewer -- Fix Patch button to generate patches for all files in the commit -- Display confirmation dialog for Transfer Ownership and Garbage collection -- Fix wrong url encoding in "Compare & pull request" +### 4.30.0 - xx Dec 2018 +- Automatic ChangeLog Summary generation for new Releases +- A lot of GitBucket Web API updates to increase compatibility with the GitHub API. +- Display of checkboxes in Markdown files in Git repositories +- A new extension point for plugins: anonymousAccessiblePaths +- Group support in the Gist Plugin +- Allow redirection to the Release Page from the Activity Timeline Page See the [change log](CHANGELOG.md) for all of the updates. diff --git a/build.sbt b/build.sbt index 1582493..873e9d5 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.30.0-SNAPSHOT" +val GitBucketVersion = "4.30.0" val ScalatraVersion = "2.6.3" val JettyVersion = "9.4.14.v20181114" val JgitVersion = "5.1.3.201810200350-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 327b53e..65b58dc 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -58,5 +58,6 @@ new Version("4.26.0"), new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml")), new Version("4.28.0"), - new Version("4.29.0") + new Version("4.29.0"), + new Version("4.30.0") )