Skip to content

Commit

Permalink
Version bump to rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
ragaskar committed Sep 1, 2011
1 parent ec24992 commit 6b59567
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lib/jasmine-core/jasmine.js
Expand Up @@ -2472,6 +2472,6 @@ jasmine.version_= {
"major": 1,
"minor": 1,
"build": 0,
"revision": 1310556152,
"release_candidate": 3
"revision": 1314876345,
"release_candidate": 4
};
2 changes: 1 addition & 1 deletion lib/jasmine-core/version.rb
@@ -1,6 +1,6 @@
module Jasmine
module Core
VERSION = "1.1.0.rc3"
VERSION = "1.1.0.rc4"
end
end

2 changes: 1 addition & 1 deletion src/core/Env.js
Expand Up @@ -58,7 +58,7 @@ jasmine.Env.prototype.versionString = function() {
var version = this.version();
var versionString = version.major + "." + version.minor + "." + version.build;
if (version.release_candidate) {
versionString += ".rc" + version.release_candidate
versionString += ".rc" + version.release_candidate;
}
versionString += " revision " + version.revision;
return versionString;
Expand Down
4 changes: 2 additions & 2 deletions src/version.js
Expand Up @@ -2,6 +2,6 @@ jasmine.version_= {
"major": 1,
"minor": 1,
"build": 0,
"revision": 1310556152,
"release_candidate": 3
"revision": 1314876345,
"release_candidate": 4
};
2 changes: 1 addition & 1 deletion src/version.json
Expand Up @@ -2,5 +2,5 @@
"major": 1,
"minor": 1,
"build": 0,
"release_candidate": 3
"release_candidate": 4
}

0 comments on commit 6b59567

Please sign in to comment.