From 67eea1a61b71c59f88e01220bf47d359799da322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Marti=CC=81n?= Date: Sun, 24 Aug 2014 12:57:59 +0200 Subject: [PATCH] Updated README and CHANGELOG --- CHANGELOG.md | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4335b6..4181bc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog: ### Versions: - +* **1.0.2** - Fixed bug that prevented anything but an Activity from injection. Disabled type checking for auto-generated methods, so users won't have to type ``@CompileStatic(TypeCheckingMethod.SKIP)``. * **1.0.1** - SwissKnife is now compatible with Android 4.0 - 4.1. * **1.0.0** - Initial release diff --git a/README.md b/README.md index 1cbe41b..06c9e02 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,8 @@ For more info, please [read the wiki pages](https://github.com/Arasthel/SwissKni I would also like to thank **[@Dexafree](https://github.com/dexafree)** for his help writing the wiki, testing the library and creating the sample app, which contains some usage examples. +You can find a **CHANGELOG** [here](./CHANGELOG.md). + ## Using it To use SwissKnife **you must use Groovy on your Android project** as the code generation is done using AST processing, which is a Groovy feature. You can learn how to do that using [this plugin](https://github.com/melix/groovy-android-gradle-plugin) on the [wiki pages](https://github.com/Arasthel/SwissKnife/wiki/How-to-use-Groovy). @@ -67,7 +69,7 @@ Once your project App Module is configured to use Groovy you can add this librar ```groovy dependencies { ... - compile 'com.arasthel:swissknife:1.0.1' + compile 'com.arasthel:swissknife:1.0.2' ... }