File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
2
2
* New EventBusBuilder to configure EventBus instances (including the getDefault() instance, #124 )
3
3
* Added configuration to disable "No subscribers registered for event" logs (EventBusBuilder, #107 , #117 )
4
4
* Added configuration to disable sending SubscriberExceptionEvent and NoSubscriberEvent (EventBusBuilder)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'maven'
3
3
apply plugin : ' signing'
4
4
5
5
group = ' de.greenrobot'
6
- version = ' 2.3.0-SNAPSHOT '
6
+ version = ' 2.3.0'
7
7
sourceCompatibility = 1.6
8
8
9
9
def isSnapshot = version. endsWith(' -SNAPSHOT' )
Original file line number Diff line number Diff line change @@ -33,19 +33,19 @@ EventBus is available on Maven Central. Just include it as a dependency in your
33
33
34
34
Gradle:
35
35
```
36
- compile 'de.greenrobot:eventbus:2.2.1 '
36
+ compile 'de.greenrobot:eventbus:2.3.0 '
37
37
```
38
38
Maven:
39
39
```
40
40
<dependency>
41
41
<groupId>de.greenrobot</groupId>
42
42
<artifactId>eventbus</artifactId>
43
- <version>2.2.1 </version>
43
+ <version>2.3.0 </version>
44
44
</dependency>
45
45
```
46
46
Ivy:
47
47
```
48
- <dependency name="eventbus" org="de.greenrobot" rev="2.2.1 " />
48
+ <dependency name="eventbus" org="de.greenrobot" rev="2.3.0 " />
49
49
```
50
50
[ Or download EventBus from Maven Central] ( http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.greenrobot%22%20AND%20a%3A%22eventbus%22 )
51
51
You can’t perform that action at this time.
0 commit comments