aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Edward Gruber <cgruber@google.com>2015-06-01 00:19:00 -0700
committerChristian Edward Gruber <cgruber@google.com>2015-06-01 00:19:00 -0700
commiteb7526255934d173ed10dc601da378c9f870842b (patch)
tree2007374a5f36f3480e7947eba7389c45a5c37302 /README.md
parente992c4db3c133f47ec19bf7cde9d52fae7d68393 (diff)
downloaddagger2-eb7526255934d173ed10dc601da378c9f870842b.tar.gz
Update readme to account for dagger 2.0.1
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index bff5ceb31..5f4ee00af 100644
--- a/README.md
+++ b/README.md
@@ -6,12 +6,12 @@ A fast dependency injector for Android and Java.
About Google's Fork
-------------
-Dagger 2.0 is a compile-time evolution approach to dependency injection. Taking the approach
+Dagger 2 is a compile-time evolution approach to dependency injection. Taking the approach
started in Dagger 1.x to its ultimate conclusion, Dagger 2.0 eliminates all reflection, and
improves code clarity by removing the traditional ObjectGraph/Injector in favor of
user-specified @Component interfaces.
-This github project represents the Dagger 2.0 development stream. The earlier
+This github project represents the Dagger 2 development stream. The earlier
[project page][square] (Square, Inc's repository) represents the earlier 1.0 development stream.
Both versions have benefitted from strong involvement from Square, Google, and other contributors.
@@ -20,7 +20,7 @@ Both versions have benefitted from strong involvement from Square, Google, and o
Status
------
- - ***Release Version:* 2.0**
+ - ***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.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.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, one would include the `dagger` artifact in the dependencies section
@@ -55,12 +55,12 @@ dependency:
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger</artifactId>
- <version>2.0</version>
+ <version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
- <version>2.0</version>
+ <version>2.0.1</version>
<optional>true</optional>
</dependency>
</dependencies>
@@ -82,14 +82,14 @@ then you should add this to your maven configuration:
### Download
- * 2.0 (google/dagger)
+ * 2.x (google/dagger)
* [Dagger 2.0 Documentation][website]
* [Dagger 2.0 Javadocs][20api]
* [Dagger development Javadocs][latestapi] (from the `master` branch on GitHub)
* [Google's Dagger project site on GitHub][project]
* <a href="https://plus.google.com/118328287768685565185" rel="publisher">Google+ Dagger Project Page</a>
* [Google+ Dagger Users Community][community]
- * 1.0 (square/dagger)
+ * 1.x (square/dagger)
* [Square's original Dagger project site on GitHub][square]
* [Square Open Source Community][squarecommunity]