diff --git a/CHANGES.md b/CHANGES.md
index bf513e3..1c706f7 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,6 +2,10 @@
 
 ## Unreleased
 
+## 3.8.15
+
+- Forbid jumping to offscreen tags, [#442](https://github.com/acejump/AceJump/issues/442)
+
 ## 3.8.14
 
 - Fixes NoSuchFieldError: Companion on older platform versions, [#432](https://github.com/acejump/AceJump/issues/432), [#434](https://github.com/acejump/AceJump/issues/434), [#435](https://github.com/acejump/AceJump/issues/432), [#437](https://github.com/acejump/AceJump/issues/437), [#438](https://github.com/acejump/AceJump/issues/438), thanks to [@wuruofan](https://github.com/wuruofan)
diff --git a/build.gradle.kts b/build.gradle.kts
index 9c3a612..f168771 100755
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -63,8 +63,10 @@ kotlin {
   }
 }
 
+val acejumpVersion = "3.8.15"
+
 changelog {
-  version = "3.8.14"
+  version = acejumpVersion
   path = "${project.projectDir}/CHANGES.md"
   header = provider { "[${project.version}] - ${date()}" }
   itemPrefix = "-"
@@ -81,11 +83,11 @@ dependencies {
 }
 
 intellij {
-  version = "2023.2"
+  version = "2023.2.1"
   pluginName = "AceJump"
   updateSinceUntilBuild = false
   plugins = listOf("java")
 }
 
 group = "org.acejump"
-version = "3.8.14"
+version = acejumpVersion