aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Edward Gruber <christianedwardgruber@gmail.com>2015-11-04 14:03:20 -0800
committerChristian Edward Gruber <christianedwardgruber@gmail.com>2015-11-04 14:03:20 -0800
commit35daeacd2faf40d540dc74e21aa67dcee66baee8 (patch)
tree7061a8d9389da5d664bb6b60011e345fc221f67d /README.md
parent68a2e92682b7f584be26a9f8562c14d9468f88e6 (diff)
downloaddagger2-35daeacd2faf40d540dc74e21aa67dcee66baee8.tar.gz
Update for release 2.0.2
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 3c0e8bc13..f9d182f6a 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ Both versions have benefitted from strong involvement from Square, Google, and o
Status
------
- - ***Release Version:* 2.0.1**
+ - ***Release Version:* 2.0.2**
- ***Snapshot Version:* 2.1-SNAPSHOT**
Dagger is currently in active development, primarily internally at Google, with regular pushes
@@ -41,9 +41,9 @@ mailing list.
Installation
--------
-You will need to include the `dagger-2.0.1.jar` in your application's runtime.
+You will need to include the `dagger-2.0.2.jar` in your application's runtime.
In order to activate code generation and generate implementations to manage
-your graph you will need to include `dagger-compiler-2.0.1.jar` in your build
+your graph you will need to include `dagger-compiler-2.0.2.jar` in your build
at compile time.
In a Maven project, include the `dagger` artifact in the dependencies section
@@ -55,12 +55,12 @@ of your `pom.xml` and the `dagger-compiler` artifact as either an `optional` or
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger</artifactId>
- <version>2.0.1</version>
+ <version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
- <version>2.0.1</version>
+ <version>2.0.2</version>
<optional>true</optional>
</dependency>
</dependencies>