Skip to content

Commit

Permalink
Move to beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeb01 committed Jan 6, 2013
1 parent 24440cd commit bffe354
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ Maintainer
Changelog
==========

## 3.0.0.beta2 Released (7-Jan-2013)

- Remove millisecond wakeup from BlockingWaitStrategy
- Add RingBuffer.claimAndGetPreallocated
- Add RingBuffer.isPublished

## 3.0.0.beta1 Released (3-Jan-2013)

- Remove claim strategies and replace with Publishers/Sequences, remove pluggability of claim strategies.
Expand Down
11 changes: 3 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apply plugin: 'eclipse' // Only used so the Eclipse STS Gradle plugin can see
defaultTasks 'build'

group = 'com.lmax'
version = new Version(major: 3, stage: 'snapshot3', release: true)
version = new Version(major: 3, stage: 'beta2')

ext {
fullName = 'Disruptor Framework'
Expand Down Expand Up @@ -154,7 +154,7 @@ install {
}

signing {
required { version.release && gradle.taskGraph.hasTask('uploadArchives') }
required { gradle.taskGraph.hasTask('uploadArchives') }
sign configurations.archives
}

Expand All @@ -181,16 +181,11 @@ task tempLibs(type: Sync) {
into('templib')
}

gradle.taskGraph.whenReady { taskGraph ->
version.release = version.release ?: taskGraph.hasTask('uploadArchives')
}

class Version {
int major, minor = 0, revision = 0
String stage
boolean release

String toString() {
"$major.$minor.$revision${stage ? '.' + stage : ''}${release ? '' : '-SNAPSHOT'}"
"$major.$minor.$revision${stage ? '.' + stage : ''}"
}
}

0 comments on commit bffe354

Please sign in to comment.