Skip to content

Commit

Permalink
Working on 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Herbert Vojčík committed May 24, 2015
1 parent 00be66a commit ab72085
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "amber",
"version": "0.14.14",
"version": "0.15.0-pre",
"main": "support/amber.js",
"ignore": [
"**/.*",
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "amber",
"version": "0.14.14",
"version": "0.15.0-pre",
"description": "An implementation of the Smalltalk language that runs on top of the JS runtime.",
"homepage": "http://amber-lang.net",
"keywords": [
Expand All @@ -20,7 +20,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/amber-smalltalk/amber.git#0.14.14"
"url": "git://github.com/amber-smalltalk/amber.git"
},
"engines": {
"node": ">=0.10.0"
Expand Down
4 changes: 2 additions & 2 deletions src/Kernel-Infrastructure.js
Expand Up @@ -3429,12 +3429,12 @@ selector: "version",
protocol: 'accessing',
fn: function (){
var self=this;
return "0.14.14";
return "0.15.0-pre";

},
//>>excludeStart("ide", pragmas.excludeIdeData);
args: [],
source: "version\x0a\x09\x22Answer the version string of Amber\x22\x0a\x09\x0a\x09^ '0.14.14'",
source: "version\x0a\x09\x22Answer the version string of Amber\x22\x0a\x09\x0a\x09^ '0.15.0-pre'",
referencedClasses: [],
//>>excludeEnd("ide");
messageSends: []
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel-Infrastructure.st
Expand Up @@ -750,7 +750,7 @@ settings
version
"Answer the version string of Amber"

^ '0.14.14'
^ '0.15.0-pre'
! !

!SmalltalkImage methodsFor: 'accessing amd'!
Expand Down

0 comments on commit ab72085

Please sign in to comment.