Skip to content

Releases: moosetechnology/FAST-JAVA

v3.0.7

26 Jul 09:35
f8d4c1c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.6...v3.0.7

v3.0.6

11 Jul 07:56
56750d3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.5...v3.0.6

v3.0.5

02 May 06:20
9b2743e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.4...v3.0.5

v3.0.4 - Before Parametric

30 Jan 16:33
e8d9049
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.3...v3.0.4

v3.0.3

12 Dec 14:35
a9c3008
Compare
Choose a tag to compare

What's Changed

Full Changelog: ...

Read more

v3.0.2

20 Oct 06:39
b310a6b
Compare
Choose a tag to compare

What's Changed

Introduced new Entities to handle JavaAnnotationElements ("arguments" in a Java Annotation)

Full Changelog: v3.0.1...v3.0.2

v3.0.1

04 May 09:01
c3c2809
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v3.0.1

v3.0.0

18 Apr 15:07
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.6...v3.0.0

v3

22 Feb 07:26
6a47b78
Compare
Choose a tag to compare
v3 Pre-release
Pre-release

push to v3-doc

v2.0.6 - support labeled statement

08 Dec 14:30
Compare
Choose a tag to compare

Can import labeled statement such as in:

  private void myMethod() {
    
    
    aLabel: {
         int i = 2;
         break aLabel;
      }
      
    }