Releases: moosetechnology/VerveineJ
Releases · moosetechnology/VerveineJ
v2.0.3 - fix and tests using Java17
What's Changed
- Java 17 by @badetitou in #34
- Link to Java 17 version by @badetitou in #37
- add test with enumeration defined in another location that the class … by @badetitou in #38
Full Changelog: v2.0.2...v2.0.3
v2.0.2 - Fixes
- fix JSON export of Number
- Add JSON default printer and default printer with the
prettyPrint
option - Fix the .bat file for Window user
v2.0.1 - Support JSON file format
This new release allows one to generate JSON representation of the FamixJava model.
To do so, please use
./verveineJ.sh -format json
v2.0.0 - Support FamixJava
This release is a major update of VerveineJ.
From this major release, VerveineJ can be used to generate an .mse compatible with the new FamixJava meta-model instead of the Compatibility FAMIX one.
v1.0.2 - follow modifiers update
From this release, modifiers are represented with different attributes instead of a big one
Handle invocation of the anonymous classes constructor
From this version, we can extract invocation of anonymous class constructor
method() {
new A(){
}
}
in the above example, new A
will be extracted as the call to the A
constructor