From 976d818397551c828eccb62d650c154d2bcd1ef5 Mon Sep 17 00:00:00 2001 From: Adrian Kunz Date: Tue, 10 Aug 2021 10:55:25 +0200 Subject: [PATCH] release: v1.6.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bd193c..9b7969f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -179,3 +179,26 @@ ## Bugfixes * Generated code now includes FMethod type parameters. #90 + +# fulib v1.6.0 + +## General + +* Updated all dependencies. #100 + +## New Features + ++ Added an import method for EMF / `ecore` files to `ClassModelManager`. #91 #92 ++ Added a simple plugin architecture. #93 #94 ++ Added a way to apply plugins to `ClassModelManager`s. #94 ++ Added `ClassModelGenerator`, a model for generators. #94 ++ Added `ClassModelDecorator` and `ClassModelDecorators` from fulibScenarios. #94 ++ Added [DTO mapping](docs/definitions/10-dtos.md). #97 #99 + +## Improvements + ++ Attributes reflectively loaded in one `ClassModelDecorator` can now use types from a `ClassModelDecorator` in a different package. #96 #98 + +## Bugfixes + +* Associations declared with `@Link` can no longer reference types in other packages. #98 diff --git a/README.md b/README.md index cfc2868c..d39f8ea8 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,11 @@ dependencies { // ... // https://mvnrepository.com/artifact/org.fulib/fulibScenarios - fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.6.2' + fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.7.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.5.1' + fulibScenarios group: 'org.fulib', name: 'fulib', version: '1.6.0' } ```