aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorbeder <beder@google.com>2015-12-30 06:45:27 -0800
committerGregory Kick <gak@google.com>2016-01-06 14:49:06 -0600
commit78814745b370f5f10862e72971fce82238c8e44a (patch)
treeeb4dcccceaa3e26addabfa94475304db75630b0d /README.md
parentb9bf155caaa7faf72cb7a0df27375f98440c5220 (diff)
downloaddagger2-78814745b370f5f10862e72971fce82238c8e44a.tar.gz
Refactor the InjectBindingRegistry to perform validation on the @Inject constructors and members injections, so that they get validated when added during construction of the BindingGraph.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=111129042
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 f9d182f6a..3c0e8bc13 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.2**
+ - ***Release Version:* 2.0.1**
- ***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.2.jar` in your application's runtime.
+You will need to include the `dagger-2.0.1.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.2.jar` in your build
+your graph you will need to include `dagger-compiler-2.0.1.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.2</version>
+ <version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
- <version>2.0.2</version>
+ <version>2.0.1</version>
<optional>true</optional>
</dependency>
</dependencies>