Skip to content

Commit c146cb0

Browse files
committed
V2.3.0
1 parent fb18569 commit c146cb0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### V2.3.0 (2014-11-??) Feature release: EventBusBuilder and performance fix
1+
### V2.3.0 (2014-11-10) Feature release: EventBusBuilder and performance fix
22
* New EventBusBuilder to configure EventBus instances (including the getDefault() instance, #124)
33
* Added configuration to disable "No subscribers registered for event" logs (EventBusBuilder, #107, #117)
44
* Added configuration to disable sending SubscriberExceptionEvent and NoSubscriberEvent (EventBusBuilder)

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.3.0-SNAPSHOT'
6+
version = '2.3.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.2.1'
36+
compile 'de.greenrobot:eventbus:2.3.0'
3737
```
3838
Maven:
3939
```
4040
<dependency>
4141
<groupId>de.greenrobot</groupId>
4242
<artifactId>eventbus</artifactId>
43-
<version>2.2.1</version>
43+
<version>2.3.0</version>
4444
</dependency>
4545
```
4646
Ivy:
4747
```
48-
<dependency name="eventbus" org="de.greenrobot" rev="2.2.1" />
48+
<dependency name="eventbus" org="de.greenrobot" rev="2.3.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)