Skip to content

Commit cb51433

Browse files
committed
v0.9.2
1 parent 2b729ee commit cb51433

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
<a name="0.9.2"></a>
2+
## 0.9.2 (2016-04-14)
3+
4+
* [BUGFIX] Ensure Editor#hasActiveMarkup detects complex markups ([36be12a](https://github.com/bustlelabs/mobiledoc-kit/commit/36be12a))
5+
* [BUGFIX] Ensure inputModeDidChange fires when changing from ol -> ul ([c4680aa](https://github.com/bustlelabs/mobiledoc-kit/commit/c4680aa))
6+
* [CLEANUP] Enable live-reload for tests ([a5f4c3d](https://github.com/bustlelabs/mobiledoc-kit/commit/a5f4c3d))
7+
* [CLEANUP] Fix jsdoc formatting, add `docs` npm script. ([2b28d95](https://github.com/bustlelabs/mobiledoc-kit/commit/2b28d95))
8+
* [CLEANUP] Improve documentation for Editor, Post, PostNodeBuilder, Range ([97140e9](https://github.com/bustlelabs/mobiledoc-kit/commit/97140e9))
9+
* [DOC] minor change for `activeSections` and `activeMarkups` ([1b255c1](https://github.com/bustlelabs/mobiledoc-kit/commit/1b255c1))
10+
* [FEATURE] [BUGFIX] Refactor editor hooks ([de52092](https://github.com/bustlelabs/mobiledoc-kit/commit/de52092)), closes [#319](https://github.com/bustlelabs/mobiledoc-kit/issues/319)
11+
* built website from 36a7d5eb46db8b41887103974f59bc197adfd890 ([3fe5b35](https://github.com/bustlelabs/mobiledoc-kit/commit/3fe5b35))
12+
* minor: change Range docs ([d5aefae](https://github.com/bustlelabs/mobiledoc-kit/commit/d5aefae))
13+
14+
15+
### BREAKING CHANGE
16+
17+
* The behavior of the `cursorDidChange` hook has changed. This is a potentially
18+
breaking change for consumers (such as
19+
`ember-mobiledoc-editor`) that used the `cursorDidChange` hook to
20+
maintain toolbar state. The `inputModeDidChange` hook should be used to
21+
detect changes to editor input state instead. See #357
22+
123
<a name="0.9.1"></a>
224
## 0.9.1 (2016-03-24)
325

@@ -8,6 +30,7 @@
830
* Add card with drag/drop listeners to demo app ([f374958](https://github.com/bustlelabs/mobiledoc-kit/commit/f374958))
931
* Handle drop events semantically ([b2a49c9](https://github.com/bustlelabs/mobiledoc-kit/commit/b2a49c9))
1032
* Update README.md ([dad9dc3](https://github.com/bustlelabs/mobiledoc-kit/commit/dad9dc3))
33+
* v0.9.1 ([36a7d5e](https://github.com/bustlelabs/mobiledoc-kit/commit/36a7d5e))
1134
* chore(package): update testem to version 1.6.0 ([7117017](https://github.com/bustlelabs/mobiledoc-kit/commit/7117017))
1235

1336

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mobiledoc-kit",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "A toolkit for building WYSIWYG editors with Mobiledoc",
55
"repository": "https://github.com/bustlelabs/mobiledoc-kit",
66
"scripts": {
@@ -10,7 +10,7 @@
1010
"build": "rm -rf dist && broccoli build dist",
1111
"build-website": "./bin/build-website.sh",
1212
"deploy-website": "./bin/deploy-website.sh",
13-
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s && git add CHANGELOG.md && git commit -m 'Update changelog'",
13+
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
1414
"docs": "jsdoc -c ./.jsdoc"
1515
},
1616
"keywords": [

src/js/editor/editor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Logger.enableTypes([
4343
'editor',
4444
'parse-utils'
4545
]);
46-
Logger.disable();
46+
Logger.enable();
4747

4848
export const EDITOR_ELEMENT_CLASS_NAME = '__mobiledoc-editor';
4949

src/js/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default '0.9.1';
1+
export default '0.9.2';

0 commit comments

Comments
 (0)