mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-07 13:34:02 +02:00
Prepare for 1.8.0 release
This commit is contained in:
parent
0992c39132
commit
c437a18288
10
.teamcity/_Self/Constants.kt
vendored
10
.teamcity/_Self/Constants.kt
vendored
@ -1,12 +1,12 @@
|
||||
package _Self
|
||||
|
||||
object Constants {
|
||||
const val DEFAULT = "default"
|
||||
const val EAP = "eap"
|
||||
const val DEV = "Dev"
|
||||
const val DEFAULT_CHANNEL = "default"
|
||||
const val EAP_CHANNEL = "eap"
|
||||
const val DEV_CHANNEL = "Dev"
|
||||
|
||||
const val VERSION = "1.7.2"
|
||||
const val DEV_VERSION = "1.8.0"
|
||||
const val VERSION = "1.8.0"
|
||||
const val DEV_VERSION = "1.9.0"
|
||||
|
||||
const val GITHUB_TESTS = "LATEST-EAP-SNAPSHOT"
|
||||
const val LINTING_TESTS = "LATEST-EAP-SNAPSHOT"
|
||||
|
8
.teamcity/_Self/buildTypes/Release.kt
vendored
8
.teamcity/_Self/buildTypes/Release.kt
vendored
@ -1,8 +1,8 @@
|
||||
package _Self.buildTypes
|
||||
|
||||
import _Self.Constants.DEFAULT
|
||||
import _Self.Constants.DEV
|
||||
import _Self.Constants.EAP
|
||||
import _Self.Constants.DEFAULT_CHANNEL
|
||||
import _Self.Constants.DEV_CHANNEL
|
||||
import _Self.Constants.EAP_CHANNEL
|
||||
import _Self.Constants.RELEASE
|
||||
import _Self.Constants.VERSION
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType
|
||||
@ -29,7 +29,7 @@ object Release : BuildType({
|
||||
)
|
||||
param("env.ORG_GRADLE_PROJECT_version", "%build.number%")
|
||||
param("env.ORG_GRADLE_PROJECT_downloadIdeaSources", "false")
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", "$DEFAULT,$EAP,$DEV")
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", "$DEFAULT_CHANNEL,$EAP_CHANNEL,$DEV_CHANNEL")
|
||||
password(
|
||||
"env.ORG_GRADLE_PROJECT_slackUrl",
|
||||
"credentialsJSON:a8ab8150-e6f8-4eaf-987c-bcd65eac50b5",
|
||||
|
4
.teamcity/_Self/buildTypes/ReleaseDev.kt
vendored
4
.teamcity/_Self/buildTypes/ReleaseDev.kt
vendored
@ -1,6 +1,6 @@
|
||||
package _Self.buildTypes
|
||||
|
||||
import _Self.Constants.DEV
|
||||
import _Self.Constants.DEV_CHANNEL
|
||||
import _Self.Constants.DEV_VERSION
|
||||
import _Self.Constants.RELEASE_DEV
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType
|
||||
@ -27,7 +27,7 @@ object ReleaseDev : BuildType({
|
||||
)
|
||||
param("env.ORG_GRADLE_PROJECT_version", "%build.number%")
|
||||
param("env.ORG_GRADLE_PROJECT_downloadIdeaSources", "false")
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", DEV)
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", DEV_CHANNEL)
|
||||
}
|
||||
|
||||
vcs {
|
||||
|
4
.teamcity/_Self/buildTypes/ReleaseEap.kt
vendored
4
.teamcity/_Self/buildTypes/ReleaseEap.kt
vendored
@ -1,7 +1,7 @@
|
||||
package _Self.buildTypes
|
||||
|
||||
import _Self.Constants.DEV_VERSION
|
||||
import _Self.Constants.EAP
|
||||
import _Self.Constants.EAP_CHANNEL
|
||||
import _Self.Constants.RELEASE_EAP
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType
|
||||
import jetbrains.buildServer.configs.kotlin.v2019_2.CheckoutMode
|
||||
@ -27,7 +27,7 @@ object ReleaseEap : BuildType({
|
||||
)
|
||||
param("env.ORG_GRADLE_PROJECT_version", "%build.number%")
|
||||
param("env.ORG_GRADLE_PROJECT_downloadIdeaSources", "false")
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", EAP)
|
||||
param("env.ORG_GRADLE_PROJECT_publishChannels", EAP_CHANNEL)
|
||||
password(
|
||||
"env.ORG_GRADLE_PROJECT_slackUrl",
|
||||
"credentialsJSON:a8ab8150-e6f8-4eaf-987c-bcd65eac50b5",
|
||||
|
@ -23,7 +23,7 @@ It is important to distinguish EAP from traditional pre-release software.
|
||||
Please note that the quality of EAP versions may at times be way below even
|
||||
usual beta standards.
|
||||
|
||||
## To Be Released
|
||||
## 1.8.0, 2021-10-27
|
||||
|
||||
### Features:
|
||||
* Support `matchit.vim` extension for Ruby and XML/HTML [VIM-539](https://youtrack.jetbrains.com/issue/VIM-539) | [matchit.vim](https://github.com/chrisbra/matchit)
|
||||
|
2
doc
2
doc
@ -1 +1 @@
|
||||
Subproject commit dfdb14baa939eedf316a579574975c06191e66aa
|
||||
Subproject commit 71060c7c458c9260b6e6e7934db49279e656a864
|
@ -4,49 +4,38 @@
|
||||
<change-notes><![CDATA[
|
||||
<h3>Features:</h3>
|
||||
<ul>
|
||||
<li>Support <code>matchit.vim</code> extension for Ruby and XML/HTML <a
|
||||
href="https://youtrack.jetbrains.com/issue/VIM-539">VIM-539
|
||||
</a> |
|
||||
<a href="https://github.com/chrisbra/matchit">matchit.vim</a>
|
||||
</li>
|
||||
<li>IDE-specific configuration
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-1573">VIM-1573</a>
|
||||
</li>
|
||||
<li>Call command
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-2416">VIM-2416</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Merged PRs:</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://github.com/JetBrains/ideavim/pull/337">337</a>
|
||||
by <a href="https://github.com/citizenmatt">Matt Ellis</a>: guicursor!
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/JetBrains/ideavim/pull/343">343</a>
|
||||
by <a href="https://github.com/myzeiri">Martin Yzeiri</a>: Emulate matchit.vim
|
||||
</li>
|
||||
<li>Support <code>matchit.vim</code> extension for Ruby and XML/HTML <a
|
||||
href="https://youtrack.jetbrains.com/issue/VIM-539">VIM-539</a> | <a href="https://github.com/chrisbra/matchit">matchit.vim</a>
|
||||
</li>
|
||||
<li>IDE-specific configuration <a href="https://youtrack.jetbrains.com/issue/VIM-1573">VIM-1573</a></li>
|
||||
<li>Call command <a href="https://youtrack.jetbrains.com/issue/VIM-2416">VIM-2416</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>Fixes:</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-2417">VIM-2417</a>
|
||||
Fix bars in substitute command
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-2425">VIM-2425</a>
|
||||
Fix reload button
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-2422">VIM-2422</a>
|
||||
Fix freeze
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://youtrack.jetbrains.com/issue/VIM-2420">VIM-2420</a>
|
||||
Fix freeze
|
||||
</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2417">VIM-2417</a> Fix bars in substitute command</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2425">VIM-2425</a> Fix reload button</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2422">VIM-2422</a> Fix freeze</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2420">VIM-2420</a> Fix freeze</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2359">VIM-2359</a> Fix selection with VimExchange</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2426">VIM-2426</a> Fix marks in commands</li>
|
||||
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2438">VIM-2438</a> Fix marks in commands</li>
|
||||
<li><a href="https://github.com/JetBrains/ideavim/discussions/386">DISCUSSION-386</a> Fixed command with no spaces
|
||||
before argument
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Merged PRs:</h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/JetBrains/ideavim/pull/337">337</a> by <a href="https://github.com/citizenmatt">Matt
|
||||
Ellis</a>: guicursor!
|
||||
</li>
|
||||
<li><a href="https://github.com/JetBrains/ideavim/pull/343">343</a> by <a href="https://github.com/myzeiri">Martin
|
||||
Yzeiri</a>: Emulate matchit.vim
|
||||
</li>
|
||||
<li><a href="https://github.com/JetBrains/ideavim/pull/387">387</a> by <a href="https://github.com/wrightwriter">Petar
|
||||
Guglev</a>: Update README.md link
|
||||
</li>
|
||||
</ul>
|
||||
]]>
|
||||
</change-notes>
|
||||
|
Loading…
Reference in New Issue
Block a user