Skip to content

Commit ccbd608

Browse files
committed
V2.4.0, updated docs
1 parent 183aded commit ccbd608

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
### V2.4.0 (2014-11-10) Clean up release
2-
* Removed deprecated APIs to stick to the core functionality
3-
Note: No new feature were added since 2.3.0. Use this release if you do not rely on the APIs deprecated in V2.2.0.
1+
### V2.4.0 (2014-11-11) Clean up release
2+
* Removed deprecated APIs: A year ago in Version 2.2.0, a couple of EventBus methods were deprecated and flagged to be removed in a future release. Well, version 2.4.0 is that release. Clean ups like this one keep the API concise and simple.
43

5-
### V2.3.0 (2014-11-10) Feature release: EventBusBuilder and performance fix
4+
**Note:** No new feature were added since 2.3.0. Use this release if you do not rely on deprecated APIs.
5+
6+
### V2.3.0 (2014-11-11) Feature release: EventBusBuilder and performance fix
67
* New EventBusBuilder to configure EventBus instances (including the getDefault() instance, #124)
78
* Added configuration to disable "No subscribers registered for event" logs (EventBusBuilder, #107, #117)
89
* Added configuration to disable sending SubscriberExceptionEvent and NoSubscriberEvent (EventBusBuilder)
@@ -17,6 +18,8 @@ Note: No new feature were added since 2.3.0. Use this release if you do not rely
1718
* Ignore compiler generated methods (#76)
1819
* Various small code improvements (#120 among many others)
1920

21+
**Note:** This is your last chance to use APIs that were deprecated in V2.2.0. It's recommended to switch to Version 2.4.0 (or above) at your earliest convenience.
22+
2023
### V2.2.1 (2014-05-21) Bug fix release
2124
* Fixed an issue with AsyncExecutor and execution scope
2225

EventBus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'maven'
33
apply plugin: 'signing'
44

55
group = 'de.greenrobot'
6-
version = '2.4.0-SNAPSHOT'
6+
version = '2.4.0'
77
sourceCompatibility = 1.6
88

99
def isSnapshot = version.endsWith('-SNAPSHOT')

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ EventBus is available on Maven Central. Just include it as a dependency in your
3333

3434
Gradle:
3535
```
36-
compile 'de.greenrobot:eventbus:2.3.0'
36+
compile 'de.greenrobot:eventbus:2.4.0'
3737
```
3838
Maven:
3939
```
4040
<dependency>
4141
<groupId>de.greenrobot</groupId>
4242
<artifactId>eventbus</artifactId>
43-
<version>2.3.0</version>
43+
<version>2.4.0</version>
4444
</dependency>
4545
```
4646
Ivy:
4747
```
48-
<dependency name="eventbus" org="de.greenrobot" rev="2.3.0" />
48+
<dependency name="eventbus" org="de.greenrobot" rev="2.4.0" />
4949
```
5050
[Or download EventBus from Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.greenrobot%22%20AND%20a%3A%22eventbus%22)
5151

0 commit comments

Comments
 (0)