Skip to content

Commit

Permalink
Bumping version to 1.0.2.
Browse files Browse the repository at this point in the history
Also, importing Selenium `2.28.0` in tests.
  • Loading branch information
detro committed Dec 19, 2012
1 parent 8005876 commit b13d9c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion binding/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ext.projectLongName = "PhantomJS Driver (GhostDriver)"
ext.projectArtefactDir = "jars/"
ext.projectMainClass = "org.openqa.selenium.phantomjs.PhantomJSDriver"
ext.projectCreator = "Ivan De Marino (https://github.com/detro)"
ext.seleniumVersion = "2.27.0"
ext.seleniumVersion = "2.28.0"

dependencies {
["selenium-java", "selenium-remote-driver", "selenium-server"].each {
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
var ghostdriver = {
system : require('system'),
hub : require('./hub_register'),
version : "1.0.1"
version : "1.0.2"
},
server = require('webserver').create(),
router,
Expand Down
4 changes: 1 addition & 3 deletions src/request_handlers/status_request_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ ghostdriver.StatusReqHand = function() {
_protoParent = ghostdriver.StatusReqHand.prototype,
_statusObj = {
"build" : {
"version" : "1.0-dev",
"revision" : "unknown",
"time" : "unknown"
"version" : ghostdriver.version
},
"os" : {
"name" : ghostdriver.system.os.name,
Expand Down
2 changes: 1 addition & 1 deletion test/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
mavenCentral()
}

ext.seleniumVersion = "2.27.0"
ext.seleniumVersion = "2.28.0"
ext.junitVersion = "4.8+"
ext.jettyVersion = "6.1.21"

Expand Down

0 comments on commit b13d9c1

Please sign in to comment.