Skip to content

Commit

Permalink
Upping version for bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
rundis committed Nov 28, 2013
1 parent 66e4b9b commit 9a32f2c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In addition you may of course test locally with any browser(s) you wish. In fact
buildscript {
repositories { jcenter() } // or mavenRepo urls: 'http://dl.bintray.com/rundis/maven'
dependencies {
classpath 'org.gradle.buster:gradle-buster-plugin:0.2.4'
classpath 'org.gradle.buster:gradle-buster-plugin:0.2.4.1'
}
}
Expand Down Expand Up @@ -134,6 +134,11 @@ projectsEvaluated {

### Version history


#### 0.2.4.1
* Bugfix for dynamically assigning port


#### 0.2.4
* Autotest throttles file changes
* Autotest picks up changes in buster.js
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'maven-publish'

description = 'Gradle Buster plugin for running busterjs tests'
group = 'org.gradle.buster'
version = '0.2.4'
version = '0.2.4.1'



Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath files('../build/libs/gradle-buster-plugin-0.2.4.jar'),
classpath files('../build/libs/gradle-buster-plugin-0.2.4.1.jar'),
'net.sf.jpathwatch:jpathwatch:0.95',
'org.seleniumhq.selenium:selenium-java:2.33.0',
'com.github.detro.ghostdriver:phantomjsdriver:1.0.4'
Expand Down
2 changes: 1 addition & 1 deletion exampleFail/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath files('../build/libs/gradle-buster-plugin-0.2.4.jar'),
classpath files('../build/libs/gradle-buster-plugin-0.2.4.1.jar'),
'net.sf.jpathwatch:jpathwatch:0.95',
'org.seleniumhq.selenium:selenium-java:2.33.0',
'com.github.detro.ghostdriver:phantomjsdriver:1.0.4'
Expand Down
2 changes: 1 addition & 1 deletion exampleMulti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath files('../build/libs/gradle-buster-plugin-0.2.4.jar'),
classpath files('../build/libs/gradle-buster-plugin-0.2.4.1.jar'),
'net.sf.jpathwatch:jpathwatch:0.95',
'org.seleniumhq.selenium:selenium-java:2.33.0',
'com.github.detro.ghostdriver:phantomjsdriver:1.0.4'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class BusterServerIntegrationSpec extends Specification {
given:
def configMock = Mock(BusterConfig) {
getPort() >> 1111
getResolvedPort() >> 1111
getServerExecutablePath() >> "buster-server"
}

Expand All @@ -42,6 +43,7 @@ class BusterServerIntegrationSpec extends Specification {
given:
def configMock = Mock(BusterConfig) {
getPort() >> 1111
getResolvedPort() >> 1111
getServerExecutablePath() >> "buster-server"
}

Expand Down

0 comments on commit 9a32f2c

Please sign in to comment.