Skip to content

Commit

Permalink
V2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Nov 10, 2014
1 parent fb18569 commit c146cb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### V2.3.0 (2014-11-??) Feature release: EventBusBuilder and performance fix
### V2.3.0 (2014-11-10) Feature release: EventBusBuilder and performance fix
* New EventBusBuilder to configure EventBus instances (including the getDefault() instance, #124)
* Added configuration to disable "No subscribers registered for event" logs (EventBusBuilder, #107, #117)
* Added configuration to disable sending SubscriberExceptionEvent and NoSubscriberEvent (EventBusBuilder)
Expand Down
2 changes: 1 addition & 1 deletion EventBus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'de.greenrobot'
version = '2.3.0-SNAPSHOT'
version = '2.3.0'
sourceCompatibility = 1.6

def isSnapshot = version.endsWith('-SNAPSHOT')
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ EventBus is available on Maven Central. Just include it as a dependency in your

Gradle:
```
compile 'de.greenrobot:eventbus:2.2.1'
compile 'de.greenrobot:eventbus:2.3.0'
```
Maven:
```
<dependency>
<groupId>de.greenrobot</groupId>
<artifactId>eventbus</artifactId>
<version>2.2.1</version>
<version>2.3.0</version>
</dependency>
```
Ivy:
```
<dependency name="eventbus" org="de.greenrobot" rev="2.2.1" />
<dependency name="eventbus" org="de.greenrobot" rev="2.3.0" />
```
[Or download EventBus from Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.greenrobot%22%20AND%20a%3A%22eventbus%22)

Expand Down

0 comments on commit c146cb0

Please sign in to comment.