Skip to content

Commit

Permalink
Working on 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Herbert Vojčík committed Feb 6, 2016
1 parent 7cec4a6 commit 99015ac
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.15.1",
"version": "0.16.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.15.1",
"version": "0.16.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.15.1"
"url": "git://github.com/amber-smalltalk/amber.git"
},
"engines": {
"node": "0.10.x || 0.12.x || >=4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions src/Kernel-Infrastructure.js
Expand Up @@ -3382,12 +3382,12 @@ selector: "version",
protocol: 'accessing',
fn: function (){
var self=this;
return "0.15.1";
return "0.16.0-pre";

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

^ '0.15.1'
^ '0.16.0-pre'
! !

!SmalltalkImage methodsFor: 'accessing amd'!
Expand Down

0 comments on commit 99015ac

Please sign in to comment.