Skip to content

Commit

Permalink
Prepare release 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Dec 6, 2021
1 parent 5fa5355 commit 37c9296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,20 @@ Add EventBus to your project

Available on <a href="https://search.maven.org/search?q=g:org.greenrobot%20AND%20a:eventbus">Maven Central</a>.

**Note: to use the latest stable version [see the previous README](https://github.com/greenrobot/EventBus/tree/V3.2.0#add-eventbus-to-your-project). The following only applies to the 3.3.0 preview release available on the [Maven Central Snapshots](https://oss.sonatype.org/content/repositories/snapshots/) repository.**

Android projects:
```groovy
implementation("org.greenrobot:eventbus:3.3.0-SNAPSHOT")
implementation("org.greenrobot:eventbus:3.3.0")
```

Java projects:
```groovy
implementation("org.greenrobot:eventbus-java:3.3.0-SNAPSHOT")
implementation("org.greenrobot:eventbus-java:3.3.0")
```
```xml
<dependency>
<groupId>org.greenrobot</groupId>
<artifactId>eventbus-java</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {

// Set group and version in root build.gradle so publish-plugin can detect them.
group = "org.greenrobot"
version = "3.3.0-SNAPSHOT"
version = "3.3.0"

allprojects {
repositories {
Expand Down

0 comments on commit 37c9296

Please sign in to comment.