Przeglądaj źródła

updates the Smalltalk >> version to 0.11.0

Nicolas Petton 11 lat temu
rodzic
commit
1820f2edee
3 zmienionych plików z 4 dodań i 4 usunięć
  1. 1 1
      js/Kernel-Objects.deploy.js
  2. 2 2
      js/Kernel-Objects.js
  3. 1 1
      st/Kernel-Objects.st

+ 1 - 1
js/Kernel-Objects.deploy.js

@@ -4055,7 +4055,7 @@ selector: "version",
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
-return "0.10";
+return "0.11.0";
 }, function($ctx1) {$ctx1.fill(self,"version",{},smalltalk.Smalltalk)})},
 messageSends: []}),
 smalltalk.Smalltalk);

+ 2 - 2
js/Kernel-Objects.js

@@ -5531,10 +5531,10 @@ category: 'accessing',
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
-return "0.10";
+return "0.11.0";
 }, function($ctx1) {$ctx1.fill(self,"version",{},smalltalk.Smalltalk)})},
 args: [],
-source: "version\x0a\x09\x22Answer the version string of Amber\x22\x0a\x09\x0a\x09^ '0.10'",
+source: "version\x0a\x09\x22Answer the version string of Amber\x22\x0a\x09\x0a\x09^ '0.11.0'",
 messageSends: [],
 referencedClasses: []
 }),

+ 1 - 1
st/Kernel-Objects.st

@@ -1834,7 +1834,7 @@ reservedWords
 version
 	"Answer the version string of Amber"
 	
-	^ '0.10'
+	^ '0.11.0'
 ! !
 
 !Smalltalk methodsFor: 'classes'!