1
0
mirror of https://github.com/chylex/IntelliJ-AceJump.git synced 2025-05-24 09:34:03 +02:00

update change notes

This commit is contained in:
breandan 2023-08-28 17:27:29 -04:00
parent e46cbe1d06
commit b1a044dbf8
2 changed files with 9 additions and 3 deletions

View File

@ -2,6 +2,10 @@
## Unreleased ## Unreleased
## 3.8.15
- Forbid jumping to offscreen tags, [#442](https://github.com/acejump/AceJump/issues/442)
## 3.8.14 ## 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) - 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)

View File

@ -63,8 +63,10 @@ kotlin {
} }
} }
val acejumpVersion = "3.8.15"
changelog { changelog {
version = "3.8.14" version = acejumpVersion
path = "${project.projectDir}/CHANGES.md" path = "${project.projectDir}/CHANGES.md"
header = provider { "[${project.version}] - ${date()}" } header = provider { "[${project.version}] - ${date()}" }
itemPrefix = "-" itemPrefix = "-"
@ -81,11 +83,11 @@ dependencies {
} }
intellij { intellij {
version = "2023.2" version = "2023.2.1"
pluginName = "AceJump" pluginName = "AceJump"
updateSinceUntilBuild = false updateSinceUntilBuild = false
plugins = listOf("java") plugins = listOf("java")
} }
group = "org.acejump" group = "org.acejump"
version = "3.8.14" version = acejumpVersion