Skip to content

Commit 37c9296

Browse files
Prepare release 3.3.0
1 parent 5fa5355 commit 37c9296

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,20 @@ Add EventBus to your project
6868

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

71-
**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.**
72-
7371
Android projects:
7472
```groovy
75-
implementation("org.greenrobot:eventbus:3.3.0-SNAPSHOT")
73+
implementation("org.greenrobot:eventbus:3.3.0")
7674
```
7775

7876
Java projects:
7977
```groovy
80-
implementation("org.greenrobot:eventbus-java:3.3.0-SNAPSHOT")
78+
implementation("org.greenrobot:eventbus-java:3.3.0")
8179
```
8280
```xml
8381
<dependency>
8482
<groupId>org.greenrobot</groupId>
8583
<artifactId>eventbus-java</artifactId>
86-
<version>3.3.0-SNAPSHOT</version>
84+
<version>3.3.0</version>
8785
</dependency>
8886
```
8987

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

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

1818
allprojects {
1919
repositories {

0 commit comments

Comments
 (0)