diff --git a/CHANGELOG.md b/CHANGELOG.md index bc049967..34f1ab42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/EventBus/build.gradle b/EventBus/build.gradle index daae8606..c3d4479d 100644 --- a/EventBus/build.gradle +++ b/EventBus/build.gradle @@ -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') diff --git a/README.md b/README.md index 2220ef93..c283a3d0 100644 --- a/README.md +++ b/README.md @@ -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: ``` de.greenrobot eventbus - 2.2.1 + 2.3.0 ``` Ivy: ``` - + ``` [Or download EventBus from Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.greenrobot%22%20AND%20a%3A%22eventbus%22)