Skip to content

Commit 12c9973

Browse files
Move to 0.3.2 in docs
1 parent 3d96e5a commit 12c9973

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ optionally a Mobiledoc to load. For example:
7777

7878
```js
7979
const simpleMobiledoc = {
80-
version: "0.3.1",
80+
version: "0.3.2",
8181
markups: [],
8282
atoms: [],
8383
cards: [],
@@ -121,7 +121,7 @@ document's `<head>`:
121121

122122
### Editor API
123123

124-
* `editor.serialize(version="0.3.1")` - serialize the current post for persistence. Returns
124+
* `editor.serialize(version="0.3.2")` - serialize the current post for persistence. Returns
125125
Mobiledoc.
126126
* `editor.destroy()` - teardown the editor event listeners, free memory etc.
127127
* `editor.disableEditing()` - stop the user from being able to edit the

tests/acceptance/cursor-movement-test.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,7 @@ test('left arrow when at the head of an atom moves the cursor left off the atom'
228228
marker('cc')
229229
])
230230
]);
231-
// TODO just make 0.3.1 default
232-
}, '0.3.1');
231+
});
233232
editor = new Editor({mobiledoc, atoms});
234233
editor.render(editorElement);
235234

@@ -285,8 +284,7 @@ test('right arrow when at the head of an atom moves the cursor across the atom',
285284
marker('cc')
286285
])
287286
]);
288-
// TODO just make 0.3.1 default
289-
}, '0.3.1');
287+
});
290288
editor = new Editor({mobiledoc, atoms});
291289
editor.render(editorElement);
292290

0 commit comments

Comments
 (0)