@ckeditor/ckeditor5-word-count 42.0.2-alpha.2 → 43.0.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -59
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,62 +1,4 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
- All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
5
-
6
- Changes for the past releases are available below.
7
-
8
- ## [19.0.0](https://github.com/ckeditor/ckeditor5-word-count/compare/v18.0.0...v19.0.0) (April 29, 2020)
9
-
10
- ### Other changes
11
-
12
- * Updated translations. ([091f2e7](https://github.com/ckeditor/ckeditor5-word-count/commit/091f2e7))
13
-
14
-
15
- ## [18.0.0](https://github.com/ckeditor/ckeditor5-word-count/compare/v17.0.0...v18.0.0) (March 19, 2020)
16
-
17
- Internal changes only (updated dependencies, documentation, etc.).
18
-
19
-
20
- ## [17.0.0](https://github.com/ckeditor/ckeditor5-word-count/compare/v16.0.0...v17.0.0) (February 19, 2020)
21
-
22
- ### Other changes
23
-
24
- * Updated translations. ([d8e40e5](https://github.com/ckeditor/ckeditor5-word-count/commit/d8e40e5))
25
-
26
-
27
- ## [16.0.0](https://github.com/ckeditor/ckeditor5-word-count/compare/v15.0.0...v16.0.0) (December 4, 2019)
28
-
29
- ### Other changes
30
-
31
- * Updated translations. ([ffa4b14](https://github.com/ckeditor/ckeditor5-word-count/commit/ffa4b14))
32
-
33
-
34
- ## [15.0.0](https://github.com/ckeditor/ckeditor5-word-count/compare/v10.0.2...v15.0.0) (October 23, 2019)
35
-
36
- ### Other changes
37
-
38
- * Updated translations. ([ff823db](https://github.com/ckeditor/ckeditor5-word-count/commit/ff823db)) ([6d2cc2b](https://github.com/ckeditor/ckeditor5-word-count/commit/6d2cc2b))
39
-
40
-
41
- ## [10.0.2](https://github.com/ckeditor/ckeditor5-word-count/compare/v10.0.1...v10.0.2) (August 26, 2019)
42
-
43
- ### Bug fixes
44
-
45
- * Improve words recognition, remove enter from counted characters. Closes [#4](https://github.com/ckeditor/ckeditor5-word-count/issues/4). Closes [#5](https://github.com/ckeditor/ckeditor5-word-count/issues/5). ([7e7ee48](https://github.com/ckeditor/ckeditor5-word-count/commit/7e7ee48))
46
- * Word count plugin no longer throws an error when a container is undefined. Closes [#16](https://github.com/ckeditor/ckeditor5-word-count/issues/16). ([e1a7a7e](https://github.com/ckeditor/ckeditor5-word-count/commit/e1a7a7e))
47
-
48
- ### Other changes
49
-
50
- * The issue tracker for this package was moved to https://github.com/ckeditor/ckeditor5/issues. See [ckeditor/ckeditor5#1988](https://github.com/ckeditor/ckeditor5/issues/1988). ([f8035d1](https://github.com/ckeditor/ckeditor5-word-count/commit/f8035d1))
51
- * Made `WordCount#characters` and `WordCount#words` getters synchronous to make it possible to retrieve precise content stats on demand. Closes [#6](https://github.com/ckeditor/ckeditor5-word-count/issues/6). ([780dfbf](https://github.com/ckeditor/ckeditor5-word-count/commit/780dfbf))
52
- * Updated translations. ([9aab7fb](https://github.com/ckeditor/ckeditor5-word-count/commit/9aab7fb))
53
-
54
-
55
- ## [10.0.1](https://github.com/ckeditor/ckeditor5-word-count/compare/v10.0.0...v10.0.1) (July 10, 2019)
56
-
57
- Internal changes only (updated dependencies, documentation, etc.).
58
-
59
-
60
- ## [10.0.0](https://github.com/ckeditor/ckeditor5-word-count/tree/v10.0.0) (July 4, 2019)
61
-
62
- The initial font feature implementation.
4
+ All changes in the package are documented in https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-word-count",
3
- "version": "42.0.2-alpha.2",
3
+ "version": "43.0.0-alpha.0",
4
4
  "description": "Word and character count feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "42.0.2-alpha.2",
17
- "@ckeditor/ckeditor5-ui": "42.0.2-alpha.2",
18
- "@ckeditor/ckeditor5-utils": "42.0.2-alpha.2",
16
+ "@ckeditor/ckeditor5-core": "43.0.0-alpha.0",
17
+ "@ckeditor/ckeditor5-ui": "43.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-utils": "43.0.0-alpha.0",
19
19
  "lodash-es": "4.17.21",
20
- "ckeditor5": "42.0.2-alpha.2"
20
+ "ckeditor5": "43.0.0-alpha.0"
21
21
  },
22
22
  "author": "CKSource (http://cksource.com/)",
23
23
  "license": "GPL-2.0-or-later",