Skip to content

Commit 91e5afd

Browse files
committed
Release v2.2.3
1 parent 37ec687 commit 91e5afd

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [Unreleased]
44

5+
## [2.2.3]
6+
### Fixed
7+
- Cannot create `ShowSequenceAction` when the Kotlin plugin is disabled.
8+
9+
### Added
10+
- Support generate class initializer
11+
512
## [2.2.2]
613
### Fixed
714
- Export image width issue.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The Kotlin language support are in very early stage.
8686
- [x] Support generate JavaCall deeply
8787
- [ ] Support generate lambda argument
8888
- [ ] Support generate function with expression body
89-
- [ ] Support generate class initializer
89+
- [x] Support generate class initializer
9090
- [ ] Code navigation
9191

9292
## How to use

build.gradle.kts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ import org.jetbrains.changelog.markdownToHTML
22

33
fun properties(key: String) = project.findProperty(key).toString()
44

5+
buildscript {
6+
repositories {
7+
maven("https://maven.aliyun.com/repository/public")
8+
maven("https://maven.aliyun.com/repository/gradle-plugin")
9+
}
10+
}
11+
512
plugins {
613
id("java")
714
id("org.jetbrains.intellij") version "1.8.0"
@@ -15,7 +22,7 @@ repositories {
1522
mavenLocal()
1623
google()
1724
maven { url = uri("https://maven.aliyun.com/repository/public") }
18-
maven { url = uri("https://plugins.gradle.org/m2/")}
25+
maven { url = uri("https://maven.aliyun.com/repository/gradle-plugin")}
1926
maven { url = uri("https://www.jetbrains.com/intellij-repository/releases") }
2027
maven { url = uri("https://cache-redirector.jetbrains.com/intellij-dependencies") }
2128
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = vanstudio
55
pluginName = SequenceDiagram
6-
pluginVersion = 2.2.2
6+
pluginVersion = 2.2.3
77

88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.
@@ -15,7 +15,7 @@ pluginUntilBuild = 222.*
1515
pluginVerifierIdeVersions = 2020.1.4, 2020.2.4, 2020.3.4, 2021.1.3, 2021.2.4, 2021.3.3, 2022.1.2, 2022.2.1
1616

1717
platformType = IC
18-
platformVersion = 2020.2.4
18+
platformVersion = 2022.2.1
1919
platformDownloadSources = true
2020

2121
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html

0 commit comments

Comments
 (0)