Skip to content

Commit

Permalink
Prepare for 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shintaro Katafuchi committed Aug 18, 2015
1 parent ab1f140 commit 0d7be04
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,7 @@
# ChangeLog

- 1.0.0 2015/08/19
- Using support v4 compat classes.
- 0.9.0 2015/08/18
- Prepare for preview 3(final release).
- 0.5.0 2015/08/16
Expand Down
10 changes: 7 additions & 3 deletions README.md
Expand Up @@ -20,7 +20,7 @@ There are only 3 annotations.

- `@RuntimePermissions`: [Must] Register an Activity or Fragment to handle permissions.
- `@NeedsPermission`: [Must] Register a method which the permission is needed.
- `@ShowsRationale`: [Option] Register a method which explains why the permission is needed. Actually an annotated method is called when `shouldShowRequestPermissionRationale` returns true.
- `@ShowsRationale`: [Option] Register a method which explains why the permission is needed. Actually an annotated method is called when `shouldShowRequestPermissionRationale` returns true or when uer deny a permission.

> NOTE: Annotated methods must be package private or above.
Expand Down Expand Up @@ -103,11 +103,15 @@ buildscript {
apply plugin: 'android-apt'
dependencies {
compile 'com.github.hotchemi:permissionsdispatcher:0.9.0'
apt 'com.github.hotchemi:permissionsdispatcher-processor:0.9.0'
compile 'com.github.hotchemi:permissionsdispatcher:1.0.0'
apt 'com.github.hotchemi:permissionsdispatcher-processor:1.0.0'
}
```

## Support

PermissionsDispatcher supports API level over 4, and using support v4 rev.23.

## ProGuard

```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -2,7 +2,7 @@ USER = hotchemi
GROUP_ID = com.github.hotchemi
ARTIFACT_ID_CORE = permissionsdispatcher
ARTIFACT_ID_PROCESSOR = permissionsdispatcher-processor
VERSION = 0.9.0
VERSION = 1.0.0
DESCRIPTION = Annotation-based library for generating runtime permissions dispatcher.
WEBSITE = https://github.com/hotchemi/PermissionsDispatcher
LICENCES = ['Apache-2.0']

0 comments on commit 0d7be04

Please sign in to comment.