diff --git a/README.md b/README.md index e77ffee..0cc17da 100644 --- a/README.md +++ b/README.md @@ -192,19 +192,16 @@ And add the dependency: ``` dependencies { // Use compile for processor instead of apt if you haven't apt dependency. - apt 'com.github.trollsoftware.jcomposition:processor:1.1.3' - compile 'com.github.trollsoftware.jcomposition:api:1.1.3' + apt 'com.github.trollsoftware.jcomposition:processor:1.2.0' + compile 'com.github.trollsoftware.jcomposition:api:1.2.0' } ``` ## Ideas -1. Support of final class -2. Custom constructor support -3. Optional type casting in advanced generics -4. Refactor merge conflict policy. It's better to use policy objects that contains logic how to merge instead of enum and many if-else checks. -5. Check how jcomposition works on java 8-9 -6. Inherit java docs in generated files -7. Add more documentation and examples +1. Custom constructor support +2. Check how jcomposition works on java 8-9 +3. Inherit java docs in generated files +4. Add more documentation and examples ## License This library is distributed under the Apache 2.0 license found in the [LICENSE](./LICENSE) file. diff --git a/api/build.gradle b/api/build.gradle index 58a6fb3..d5157fe 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -1,5 +1,5 @@ group 'trollsoftware' -version '1.1.3-SNAPSHOT' +version '1.2.0-SNAPSHOT' apply plugin: 'java' diff --git a/build.gradle b/build.gradle index 473dc27..a6ae336 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ group 'trollsoftware' -version '1.1.3-SNAPSHOT' +version '1.2.0-SNAPSHOT' task wrapper(type: Wrapper) { gradleVersion = '2.5' diff --git a/processor/build.gradle b/processor/build.gradle index 66868d3..a4808a4 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -1,5 +1,5 @@ group 'trollsoftware' -version '1.1.3-SNAPSHOT' +version '1.2.0-SNAPSHOT' apply plugin: 'java'