1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-24 08:46:00 +01:00

Prepare to 1.7.0 release

This commit is contained in:
Alex Plate 2021-09-16 10:08:47 +03:00
parent 759d92db4d
commit b9ab4f6484
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
5 changed files with 27 additions and 18 deletions
.teamcity/_Self
CHANGES.mdREADME.md
resources/META-INF

View File

@ -5,8 +5,8 @@ object Constants {
const val EAP = "eap"
const val DEV = "Dev"
const val VERSION = "0.69"
const val DEV_VERSION = "0.70"
const val VERSION = "1.7.0"
const val DEV_VERSION = "1.8.0"
const val GITHUB_TESTS = "LATEST-EAP-SNAPSHOT"
const val LINTING_TESTS = "LATEST-EAP-SNAPSHOT"

View File

@ -1,8 +1,8 @@
package _Self.buildTypes
import _Self.Constants.DEV_VERSION
import _Self.Constants.EAP
import _Self.Constants.RELEASE_EAP
import _Self.Constants.VERSION
import jetbrains.buildServer.configs.kotlin.v2019_2.BuildType
import jetbrains.buildServer.configs.kotlin.v2019_2.CheckoutMode
import jetbrains.buildServer.configs.kotlin.v2019_2.DslContext
@ -16,7 +16,7 @@ object ReleaseEap : BuildType({
description = "Build and publish EAP of IdeaVim plugin"
artifactRules = "build/distributions/*"
buildNumberPattern = "$VERSION.%build.counter%"
buildNumberPattern = "$DEV_VERSION-eap.%build.counter%"
params {
param("env.ORG_GRADLE_PROJECT_ideaVersion", RELEASE_EAP)

View File

@ -4,8 +4,9 @@ The Changelog
History of changes in IdeaVim for the IntelliJ platform.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project DOES NOT adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Before version 1.7.0:
Stable versions use X.Y format.
EAP ([Early Access Program](https://jb.gg/ideavim-eap)) versions use X.Y.Z format.
@ -22,17 +23,20 @@ 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.7.0, 2021-09-16
### Features:
* [Secret link](https://jb.gg/vim-script-discussion). Wow, you read the changelogs! Check out the most interesting change in IdeaVim.
* Mapping keys to expressions (map \<expr>)
* New engine for Vim Script execution. Check out the [GitHub Discussion](https://jb.gg/vim-script-discussion).
* Mapping keys to expressions (map \<expr>). See `:h map-expression`.
### Fixes:
* [VIM-2368](https://youtrack.jetbrains.com/issue/VIM-2368) Do not remove selection on right click
* [VIM-2392](https://youtrack.jetbrains.com/issue/VIM-2392) Fix possible out of bounds exception
* [VIM-2387](https://youtrack.jetbrains.com/issue/VIM-2387) Fix coping with unnamed and ideaput
### Changes:
* New versioning scheme. Current version is `1.7.0` instead of `0.70`.
### Merged PRs:
* [349](https://github.com/JetBrains/ideavim/pull/349) by [eugene nizienko](https://github.com/nizienko): Run UI test ci

View File

@ -188,10 +188,6 @@ You can read your `~/.vimrc` file from `~/.ideavimrc` with this command:
source ~/.vimrc
> :warning: Please note that IdeaVim currently parses `~/.ideavimrc` & `~/.vimrc` files via simple pattern-matching.
See [VIM-669](https://youtrack.jetbrains.com/issue/VIM-669) for proper parsing
of VimL files.
Also note that if you have overridden the `user.home` JVM option, this
will affect where IdeaVim looks for your `.ideavimrc` file. For example, if you
have `-Duser.home=/my/alternate/home` then IdeaVim will source
@ -274,10 +270,6 @@ IdeaVim tips and tricks
- Check out more [ex commands](https://github.com/JetBrains/ideavim/wiki/%22set%22-commands).
- Use your vim settings with IdeaVim. Put `source ~/.vimrc` in `~/.ideavimrc`.
> :warning: Please note that IdeaVim currently parses `~/.ideavimrc` & `~/.vimrc` files via simple pattern-matching.
See [VIM-669](https://youtrack.jetbrains.com/issue/VIM-669) for proper parsing
of VimL files.
- Control the status bar icon via the [`ideastatusicon` option](https://github.com/JetBrains/ideavim/wiki/%22set%22-commands).
- Not familiar with the default behaviour during a refactoring? See the [`idearefactormode` option](https://github.com/JetBrains/ideavim/wiki/%22set%22-commands).

View File

@ -4,9 +4,22 @@
<change-notes><![CDATA[
<h3>Features:</h3>
<ul>
<li><a href="https://jb.gg/vim-script-discussion">Secret link</a>. Wow, you read the changelogs! Check out the most
interesting change in IdeaVim.
<li>New engine for Vim Script execution. Check out the <a href="https://jb.gg/vim-script-discussion">GitHub
Discussion</a>.
</li>
<li>Mapping keys to expressions (map &lt;expr&gt;). See <code>:h map-expression</code>.</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2368">VIM-2368</a> Do not remove selection on right click</li>
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2392">VIM-2392</a> Fix possible out of bounds exception</li>
<li><a href="https://youtrack.jetbrains.com/issue/VIM-2387">VIM-2387</a> Fix coping with unnamed and ideaput</li>
</ul>
<h3>Changes:</h3>
<ul>
<li>New versioning scheme. Current version is <code>1.7.0</code> instead of <code>0.70</code>.</li>
</ul>
<h3>Merged PRs:</h3>