Skip to content

Commit b651c53

Browse files
committed
prepared v11.0.5 patch
1 parent 2cc1f8c commit b651c53

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Snap! (BYOB) History
22

33
## in development:
4+
5+
## 11.0.5:
46
* **Notable Changes:**
57
* neural networks library: added multiclass classification support
68
* neural networks library: added "classifier" option to the "generate block" command
79
* neural networks library: tweaked "partition" reporter to make sure each class in a data set is adequately represented in both partitions
810
* **Translation Updates:**
911
* German
1012

13+
### 2025-10-15
14+
* prepared v11.0.5 patch
15+
1116
### 2025-10-13
1217
* new dev version
1318
* neural networks library: added multiclass classification support

snap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<script src="src/threads.js?version=2025-08-29"></script>
2121
<script src="src/objects.js?version=2025-09-08"></script>
2222
<script src="src/scenes.js?version=2024-05-28"></script>
23-
<script src="src/gui.js?version=2025-10-13"></script>
23+
<script src="src/gui.js?version=2025-10-15"></script>
2424
<script src="src/paint.js?version=2023-05-24"></script>
2525
<script src="src/lists.js?version=2025-06-12"></script>
2626
<script src="src/byob.js?version=2025-05-13"></script>

src/gui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ HatBlockMorph*/
8787

8888
// Global stuff ////////////////////////////////////////////////////////
8989

90-
modules.gui = '2025-October-13';
90+
modules.gui = '2025-October-15';
9191

9292
// Declarations
9393

94-
var SnapVersion = '11.0.5-dev';
94+
var SnapVersion = '11.0.5';
9595

9696
var IDE_Morph;
9797
var ProjectDialogMorph;

sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*global self, caches*/
22
/*jshint esversion: 6*/
3-
var snapVersion = '11.0.5-dev',
3+
var snapVersion = '11.0.5',
44
cacheName = `snap-pwa-${snapVersion}`,
55
filesToCache = [
66
'snap.html',

0 commit comments

Comments
 (0)