Skip to content

Commit

Permalink
Merge branch 'release/v3.0.0-rc.1036.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mplatvoet committed Feb 5, 2016
2 parents a4c412d + e7cf842 commit 9d25a66
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Source and target compatibility is `1.6`
###Gradle
```groovy
dependencies {
compile 'nl.komponents.kovenant:kovenant:3.0.0-rc.1036'
compile 'nl.komponents.kovenant:kovenant:3.0.0-rc.1036.1'
}
```

Expand All @@ -32,7 +32,7 @@ dependencies {
<dependency>
<groupId>nl.komponents.kovenant</groupId>
<artifactId>kovenant</artifactId>
<version>3.0.0-rc.1036</version>
<version>3.0.0-rc.1036.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ buildscript {

allprojects {
ext {
appVersion = '3.0.0-rc.1036'
appVersion = '3.0.0-rc.1036.1'
appGroup = 'nl.komponents.kovenant'


Expand Down
7 changes: 7 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Changelog of Kovenant. Complying to [Semantic Versioning](http://semver.org).
Please refer to [roadmap](roadmap.md) for upcoming releases.


##v3.0.0-rc.1036.1

**core**

* [KOV-67](http://issues.komponents.nl/youtrack/issue/KOV-67) Duplicate execution of task on shutdown boundary

##v3.0.0-rc.1036

**core**
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Source and target compatibility is `1.6`
###Gradle
```groovy
dependencies {
compile 'nl.komponents.kovenant:kovenant:3.0.0-rc.1036'
compile 'nl.komponents.kovenant:kovenant:3.0.0-rc.1036.1'
}
```

Expand All @@ -40,7 +40,7 @@ dependencies {
<dependency>
<groupId>nl.komponents.kovenant</groupId>
<artifactId>kovenant</artifactId>
<version>3.0.0-rc.1036</version>
<version>3.0.0-rc.1036.1</version>
</dependency>
```

Expand Down
6 changes: 6 additions & 0 deletions projects/core/src/main/kotlin/dispatcher-jvm.kt
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ private class NonBlockingDispatcher(val name: String,
// the only state that may keep the thread in interrupted state is when alive == false.
// but since we are the last statement the loop is going to end anyway because it checks
// whether we're still alive.

// KOV-67
//
// null out the poll result. When blocking PollStrategies are it might not get updated with
// a new value
pollResult = null
}
}
}
Expand Down

0 comments on commit 9d25a66

Please sign in to comment.