Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bantic committed Apr 14, 2016
1 parent 2b729ee commit cb51433
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
<a name="0.9.2"></a>
## 0.9.2 (2016-04-14)

* [BUGFIX] Ensure Editor#hasActiveMarkup detects complex markups ([36be12a](https://github.com/bustlelabs/mobiledoc-kit/commit/36be12a))
* [BUGFIX] Ensure inputModeDidChange fires when changing from ol -> ul ([c4680aa](https://github.com/bustlelabs/mobiledoc-kit/commit/c4680aa))
* [CLEANUP] Enable live-reload for tests ([a5f4c3d](https://github.com/bustlelabs/mobiledoc-kit/commit/a5f4c3d))
* [CLEANUP] Fix jsdoc formatting, add `docs` npm script. ([2b28d95](https://github.com/bustlelabs/mobiledoc-kit/commit/2b28d95))
* [CLEANUP] Improve documentation for Editor, Post, PostNodeBuilder, Range ([97140e9](https://github.com/bustlelabs/mobiledoc-kit/commit/97140e9))
* [DOC] minor change for `activeSections` and `activeMarkups` ([1b255c1](https://github.com/bustlelabs/mobiledoc-kit/commit/1b255c1))
* [FEATURE] [BUGFIX] Refactor editor hooks ([de52092](https://github.com/bustlelabs/mobiledoc-kit/commit/de52092)), closes [#319](https://github.com/bustlelabs/mobiledoc-kit/issues/319)
* built website from 36a7d5eb46db8b41887103974f59bc197adfd890 ([3fe5b35](https://github.com/bustlelabs/mobiledoc-kit/commit/3fe5b35))
* minor: change Range docs ([d5aefae](https://github.com/bustlelabs/mobiledoc-kit/commit/d5aefae))


### BREAKING CHANGE

* The behavior of the `cursorDidChange` hook has changed. This is a potentially
breaking change for consumers (such as
`ember-mobiledoc-editor`) that used the `cursorDidChange` hook to
maintain toolbar state. The `inputModeDidChange` hook should be used to
detect changes to editor input state instead. See #357

<a name="0.9.1"></a>
## 0.9.1 (2016-03-24)

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


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobiledoc-kit",
"version": "0.9.1",
"version": "0.9.2",
"description": "A toolkit for building WYSIWYG editors with Mobiledoc",
"repository": "https://github.com/bustlelabs/mobiledoc-kit",
"scripts": {
Expand All @@ -10,7 +10,7 @@
"build": "rm -rf dist && broccoli build dist",
"build-website": "./bin/build-website.sh",
"deploy-website": "./bin/deploy-website.sh",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s && git add CHANGELOG.md && git commit -m 'Update changelog'",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
"docs": "jsdoc -c ./.jsdoc"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/js/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Logger.enableTypes([
'editor',
'parse-utils'
]);
Logger.disable();
Logger.enable();

export const EDITOR_ELEMENT_CLASS_NAME = '__mobiledoc-editor';

Expand Down
2 changes: 1 addition & 1 deletion src/js/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '0.9.1';
export default '0.9.2';

0 comments on commit cb51433

Please sign in to comment.