Skip to content

Commit bcca03d

Browse files
authored
Release v0.1.0 (#153)
1 parent 9a2f755 commit bcca03d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const LEGACY_FILE_NAME = "obs-files";
55

66
const FILE_NAME = "recho-files";
77

8-
const DEFAULT_RUNTIME = "javascript@0.0.0-beta.1";
8+
const DEFAULT_RUNTIME = "javascript@0.1.0";
99

1010
function generateProjectName() {
1111
const adj = predicates[~~(Math.random() * predicates.length)];
@@ -42,7 +42,7 @@ export function getNotebooks() {
4242
if (!files) return [];
4343
const notebooks = JSON.parse(files).sort((a, b) => new Date(b.updated) - new Date(a.updated));
4444
// Remove fallback runtime when we have breaking changes.
45-
return notebooks.map((notebook) => ({...notebook, runtime: notebook.runtime || DEFAULT_RUNTIME}));
45+
return notebooks.map((notebook) => ({...notebook, runtime: DEFAULT_RUNTIME}));
4646
}
4747

4848
export function clearNotebooksFromLocalStorage() {

0 commit comments

Comments
 (0)