aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorronshapiro <ronshapiro@google.com>2016-03-23 08:47:08 -0700
committerRon Shapiro <ronshapiro@google.com>2016-04-05 11:09:28 -0400
commit9e0af797a605e8fea2b5a1eae72a7f4c5b308722 (patch)
treec8186cb5d3a0c498e82e15572cd5f9ebd6daaff5 /README.md
parent7236ca53c16dca1f8307a56cdf52512036173b8e (diff)
downloaddagger2-9e0af797a605e8fea2b5a1eae72a7f4c5b308722.tar.gz
Update README with v2.2 and 2.3-SNAPSHOT
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=117933593
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index ed9db7ccb..b035cc66e 100644
--- a/README.md
+++ b/README.md
@@ -19,13 +19,13 @@ Square, Google, and other contributors.
## Status
- - ***Release Version:* 2.1**
- - ***Snapshot Version:* 2.2-SNAPSHOT**
+ - ***Release Version:* 2.2**
+ - ***Snapshot Version:* 2.3-SNAPSHOT**
Dagger is currently in active development, primarily internally at Google,
with regular pushes to the open-source community. Snapshot releases are
auto-deployed to sonatype's central maven repository on a clean build with
-the version `2.2-SNAPSHOT`.
+the version `2.3-SNAPSHOT`.
## Documentation
@@ -53,12 +53,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.1</version>
+ <version>2.2</version>
</dependency>
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
<optional>true</optional>
</dependency>
</dependencies>
@@ -72,7 +72,7 @@ parallelizable execution graphs), then add this to your maven configuration:
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-producers</artifactId>
- <version>2.1</version>
+ <version>2.2</version>
</dependency>
</dependencies>
```