Skip to content

Commit 9d7d336

Browse files
committed
Version 0.4.0
This release finally adds support for React 0.14. ⚠️ Shims to support older versions of React have been removed. - React 0.14 support (@jacktrades, #49) - Removed shims for React 0.12 and 0.13 - Bumped Quill.js to v0.20.1 - _Normal_ and _smaller_ sizes are not swapped anymore. (#63) - Various toolbar choice items are now correctly ordered. - Added image tooltips to the default set of modules (@kairxa, #54) - Fixed extra white-space in classnames (@asiniy, #67) - Published the Quill namespace on ReactQuill (@Sajam, #60) - Quill stylesheets are now linked to `dist/` for convenience. (#70) - Exposed editor accessor methods in change events. (#33)
1 parent d9e4cc9 commit 9d7d336

File tree

8 files changed

+41
-16
lines changed

8 files changed

+41
-16
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
=========
33

4+
v0.4.0
5+
------
6+
This release finally adds support for React 0.14. ⚠️ Shims to support older versions of React have been removed.
7+
8+
- React 0.14 support (@jacktrades, #49)
9+
- Removed shims for React 0.12 and 0.13
10+
- Bumped Quill.js to v0.20.1
11+
- _Normal_ and _smaller_ sizes are not swapped anymore. (#63)
12+
- Various toolbar choice items are now correctly ordered.
13+
- Added image tooltips to the default set of modules (@kairxa, #54)
14+
- Fixed extra white-space in classnames (@asiniy, #67)
15+
- Published the Quill namespace on ReactQuill (@Sajam, #60)
16+
- Quill stylesheets are now linked to `dist/` for convenience. (#70)
17+
- Exposed editor accessor methods in change events. (#33)
18+
419
v0.3.0
520
------
621
- Bumped Quill.js to v0.2.0

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015, zenoamaro <[email protected]>
3+
Copyright (c) 2016, zenoamaro <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
21+
THE SOFTWARE.

README.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,23 @@ More tasks are available on the [Makefile](Makefile):
277277

278278
Changelog
279279
---------
280+
#### v0.4.0
281+
This release finally adds support for React 0.14. ⚠️ Shims to support older versions of React have been removed.
282+
283+
- React 0.14 support (@jacktrades, #49)
284+
- Removed shims for React 0.12 and 0.13
285+
- Bumped Quill.js to v0.20.1
286+
- _Normal_ and _smaller_ sizes are not swapped anymore. (#63)
287+
- Various toolbar choice items are now correctly ordered.
288+
- Added image tooltips to the default set of modules (@kairxa, #54)
289+
- Fixed extra white-space in classnames (@asiniy, #67)
290+
- Published the Quill namespace on ReactQuill (@Sajam, #60)
291+
- Quill stylesheets are now linked to `dist/` for convenience. (#70)
292+
- Exposed editor accessor methods in change events. (#33)
293+
294+
280295
#### v0.3.0
281-
- Bumped Quill.js to v0.2.0
296+
- Bumped Quill.js to v0.20.0
282297
- Exposed `focus` and `blur` public methods from component.
283298
- Exposed `getEditor` public method to retrieve the backing Quill instance from the component.
284299
- Added callbacks for listening to keyboard events.
@@ -293,12 +308,6 @@ Changelog
293308
- Fixes an issue where the editor would be instantiated with the wrong value. Fixes #50.
294309
- Avoiding parsing Quill's `dist` directory with webpack.
295310

296-
#### v0.2.2
297-
- Added missing `modules` propType and documentation.
298-
- Children are now cloned so ReactQuill can own their refs. Fixes #20.
299-
300-
#### v0.2.1
301-
- Link toolbar button and module are now enabled by default. Fixes #19.
302311

303312
[Full changelog](CHANGELOG.md)
304313

@@ -316,7 +325,7 @@ License
316325
-------
317326
The MIT License (MIT)
318327

319-
Copyright (c) 2015, zenoamaro <[email protected]>
328+
Copyright (c) 2016, zenoamaro <[email protected]>
320329

321330
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
322331

dist/react-quill.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-quill.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-quill.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-quill",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "The Quill rich-text editor as a React component.",
55
"author": "zenoamaro <[email protected]>",
66
"homepage": "https://github.com/zenoamaro/react-quill",

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
React-Quill v0.3.0
2+
React-Quill v0.4.0
33
https://github.com/zenoamaro/react-quill
44
*/
55
module.exports = require('./component');
66
module.exports.Mixin = require('./mixin');
77
module.exports.Toolbar = require('./toolbar');
8-
module.exports.Quill = require('quill');
8+
module.exports.Quill = require('quill');

0 commit comments

Comments
 (0)