From 6623587a85836a356b8a5aeeede69a6bdaf6555e Mon Sep 17 00:00:00 2001 From: Jonathan Neugebauer Date: Wed, 16 Dec 2020 22:47:55 +0100 Subject: [PATCH] Bump version to 0.4.0 --- CHANGELOG.md | 12 ++++++++++++ build.gradle | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f47537..a70260b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0] - 2020-12-16 + +### Added + +* Improved modularity (#14, #16) + - Now you can use `mdAL` in a more modularized way: You dont't have to specify all entities anymore but can choose to only generate AL code for parts of a solution (e. g. only Master or Supplemental entities). + +### Changed + +* Update to Xtext 2.23.0 +* Update to picocli 4.5.2 + ## [0.3.1] - 2020-09-21 ### Fixes diff --git a/build.gradle b/build.gradle index 26a02f5..57c1ff6 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ subprojects { apply plugin: 'eclipse' group = 'de.joneug.mdal' - version = '0.3.1' + version = '0.4.0' sourceCompatibility = '8' targetCompatibility = '8'