Skip to content

Commit

Permalink
release: v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Sep 30, 2020
1 parent 06fd03a commit c2dadfc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,23 @@

* The code generator now correctly determines when PropertyChange members are needed, depending on attributes, associations, potential super classes and the use of `POJO` property style. #21 #63
* The code generator now properly removes PropertyChange members when they are not needed. #63

# fulib v1.3.0

## New Features

+ Attributes and roles can now specify a description and a since version that is copied to their JavaDocs. #32 #64
+ Added `ClassModelManager.haveRole` methods as aliases for `associate`. #61
+ Static fields are now grouped together in newly generated classes. #65
+ Property accessors are now grouped together in newly generated classes. #65

## Improvements

* Updated to fulibYaml v1.4.0.
* Generated table `toString` methods now produce Markdown. #67
* Generated property constants are now fully uppercase. #68
* The `FMethod.setDeclaration` method now throws an `IllegalArgumentException` if the new value has syntax errors. #72

## Bugfixes

* The code generator now correctly indents new members. #69
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ dependencies {
// ...
// https://mvnrepository.com/artifact/org.fulib/fulibScenarios
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.4.1'
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.5.0'
// optional, to override the version of fulib used by fulibScenarios:
// https://mvnrepository.com/artifact/org.fulib/fulib
fulibScenarios group: 'org.fulib', name: 'fulib', version: '1.2.3'
fulibScenarios group: 'org.fulib', name: 'fulib', version: '1.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ test {
}

revapi {
oldVersion = '1.2.0'
oldVersion = '1.3.0'
}

// --------------- ANTLR ---------------
Expand Down

0 comments on commit c2dadfc

Please sign in to comment.