Skip to content

Commit

Permalink
Release v2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanco committed Nov 5, 2022
1 parent 38e0e21 commit c5f9305
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## [2.2.5]
### Added
- `UastSequenceGenerator` suppose to support JVM Language: Java, Kotlin, Scala, Groovy.

### Fixed
- Issue #139, #141 `UnsupportedOperatonException`

## [2.2.4]
### Added
- UAST ActionFinder
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@ with this plugin, you can
## Experimental features
**The experimental features created by myself, which is not part of UML standard. Use this feature in your own risk.**

### UAST support
UAST (Unified Abstract Syntax Tree) is an abstraction layer on the PSI of different programming languages targeting the
JVM (Java Virtual Machine). It provides a unified API for working with common language elements like classes and method
declarations, literal values, and control flow operators.

Which languages are supported?
- Java: full support
- Kotlin: full support
- Scala: beta, but full support
- Groovy: declarations only, method bodies not supported

Try to use UAST api to generate SequenceDiagram.

### Smart Interface
Find the implementation of the interface smartly. e.g.
```java
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = vanstudio
pluginName = SequenceDiagram
pluginVersion = 2.2.4
pluginVersion = 2.2.5

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down

0 comments on commit c5f9305

Please sign in to comment.