diff --git a/CHANGELOG.md b/CHANGELOG.md index b176283..c5c8b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.5.0] - 21/06/2018 + +### Added +- empty rows will be excluded from import (#106) +- check if the uploaded file in the in import wizard matches structure of the pre-defined import configuration (#78) + +### Changed +- correct SQL update scripts for MySQL & PostgreSQL (#103) + +### Deleted +- `ImportAttributeMapper.dynamicAttribute` was removed. Was replaced with `AttributeMapperMode` in 0.4.0 + + +### Dependencies +- CUBA 6.9.x + + ## [0.4.0] - 26/05/2018 ### Added diff --git a/README.md b/README.md index 8a3b4ba..7023e92 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Table of Contents | Platform Version | Add-on Version | | ---------------- | -------------- | +| 6.9.x | 0.5.x | | 6.8.x | 0.1.x - 0.4.x | @@ -67,12 +68,10 @@ dependencies { ``` -### NOTE: Breaking change in 0.4.0 - -When you update to v. 0.4.0 note that there is a breaking change in the way the import configurations are stored. -Since the Import configuration couldn't be really re-used before 0.4.0 it is unlikely that you will facde any serious problems. -But if you stored import configurations before, you will find information on how to resolve this change manually in the [CHANGELOG](https://github.com/mariodavid/cuba-component-data-import/blob/master/CHANGELOG.md). +### CHANGELOG +Information on changes that happen through the different versions of the application component can be found in the [CHANGELOG](https://github.com/mariodavid/cuba-component-data-import/blob/master/CHANGELOG.md). +The Changelog also contains information about breaking changes and tips on how to resolve them. ### NOTE: Dependency: declarative-controllers This application component requires `declarative-controllers` as another dependency you have to add to your application. diff --git a/build.gradle b/build.gradle index bfeb757..23dd57f 100644 --- a/build.gradle +++ b/build.gradle @@ -47,7 +47,7 @@ cuba { artifact { group = 'de.diedavids.cuba.dataimport' version = "0.5.0" - isSnapshot = true + isSnapshot = false } tomcat { dir = "$project.rootDir/deploy/tomcat"