Skip to content

Commit

Permalink
Prepare version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jun 8, 2016
1 parent 1151c89 commit e39bf4e
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 19 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
@@ -1,10 +1,15 @@
# Change Log

Version 0.6.0 *(In development)*
--------------------------------
Version 0.6.0 *(2016-06-08)*
----------------------------

- Fix Proguard rules [\#70](https://github.com/vanniktech/OnActivityResult/pull/70) ([vanniktech](https://github.com/vanniktech))
- Verify that Numeric Intent names also do work [\#68](https://github.com/vanniktech/OnActivityResult/pull/68) ([vanniktech](https://github.com/vanniktech))
- Generate better names using NameAllocator [\#67](https://github.com/vanniktech/OnActivityResult/pull/67) ([vanniktech](https://github.com/vanniktech))
- Add name\(\) method to all Extra annotations to specify Intent name. Fixes \#47 [\#66](https://github.com/vanniktech/OnActivityResult/pull/66) ([vanniktech](https://github.com/vanniktech))

Version 0.5.0 *(2016-05-29)*
--------------------------------
----------------------------

- @Extra String defaults value should be null and not empty string. Fix \#46 [\#64](https://github.com/vanniktech/OnActivityResult/pull/64) ([vanniktech](https://github.com/vanniktech))
- Add Parcelable support for @Extra [\#60](https://github.com/vanniktech/OnActivityResult/pull/60) ([vanniktech](https://github.com/vanniktech))
Expand All @@ -16,15 +21,15 @@ Version 0.5.0 *(2016-05-29)*
- Add CharSequence support [\#41](https://github.com/vanniktech/OnActivityResult/pull/41) ([vanniktech](https://github.com/vanniktech))

Version 0.4.0 *(2016-03-29)*
--------------------------------
----------------------------

- Cache OnActivityResult Classes to use only one reflection call per class [\#39](https://github.com/vanniktech/OnActivityResult/pull/39) ([vanniktech](https://github.com/vanniktech))
- Fix bug when only parent class had @OnActivityResult annotation [\#37](https://github.com/vanniktech/OnActivityResult/pull/37) ([vanniktech](https://github.com/vanniktech))
- Avoid setting didHandle when it's not needed [\#32](https://github.com/vanniktech/OnActivityResult/pull/32) ([vanniktech](https://github.com/vanniktech))
- OnActivityResult now returns boolean whether things were handled or not [\#31](https://github.com/vanniktech/OnActivityResult/pull/31) ([vanniktech](https://github.com/vanniktech))

Version 0.3.0 *(2016-02-27)*
--------------------------------
----------------------------

- Add @Extra annotation [\#26](https://github.com/vanniktech/OnActivityResult/pull/26) ([vanniktech](https://github.com/vanniktech))
- Skip Java Lang imports [\#25](https://github.com/vanniktech/OnActivityResult/pull/25) ([vanniktech](https://github.com/vanniktech))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -22,8 +22,8 @@ buildscript {
apply plugin: 'com.neenbedankt.android-apt'
dependencies {
compile 'com.vanniktech:onactivityresult:0.5.0'
apt 'com.vanniktech:onactivityresult-compiler:0.5.0'
compile 'com.vanniktech:onactivityresult:0.6.0'
apt 'com.vanniktech:onactivityresult-compiler:0.6.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.vanniktech
VERSION_NAME=0.6.0-SNAPSHOT
VERSION_NAME=0.6.0

POM_DESCRIPTION=OnActivityResult annotation compiler for Android

Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraBoolean#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraBoolean<br>
* <br>
* NOTE: If you don't care about the {@link ExtraBoolean#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraByte#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraByte<br>
* <br>
* NOTE: If you don't care about the {@link ExtraByte#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraChar#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraChar<br>
* <br>
* NOTE: If you don't care about the {@link ExtraChar#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraDouble#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraDouble<br>
* <br>
* NOTE: If you don't care about the {@link ExtraDouble#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraFloat#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraFloat<br>
* <br>
* NOTE: If you don't care about the {@link ExtraFloat#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraInt#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraInt<br>
* <br>
* NOTE: If you don't care about the {@link ExtraInt#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraLong#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraLong<br>
* <br>
* NOTE: If you don't care about the {@link ExtraLong#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraShort#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraShort<br>
* <br>
* NOTE: If you don't care about the {@link ExtraShort#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
Expand Up @@ -18,7 +18,7 @@
* </code>
* </p>
* <br>
* extra name: same as parameter <br>
* extra name: either the value returned by {@link ExtraString#name()} or the same as the parameter name<br>
* NOTE: In this case it would be extraString<br>
* <br>
* NOTE: If you don't care about the {@link ExtraString#defaultValue()} you can also use the {@link Extra} annotation<br>
Expand Down
4 changes: 2 additions & 2 deletions onactivityresult-sample/build.gradle
Expand Up @@ -66,8 +66,8 @@ dependencies {
compile project(':onactivityresult')
apt project(':onactivityresult-compiler')

// compile 'com.vanniktech:onactivityresult:0.5.0'
// apt 'com.vanniktech:onactivityresult-compiler:0.5.0'
// compile 'com.vanniktech:onactivityresult:0.6.0'
// apt 'com.vanniktech:onactivityresult-compiler:0.6.0'

compile rootProject.ext.butterknife
apt rootProject.ext.butterknifeCompiler
Expand Down

0 comments on commit e39bf4e

Please sign in to comment.