From 3c3aa522a214e319eac7bfd7817dbd23b7a56cb0 Mon Sep 17 00:00:00 2001 From: azu Date: Fri, 14 Jun 2019 19:26:34 +0900 Subject: [PATCH] v2.0.0 --- CHANGELOG.md | 33 +++++++++++++++++++ lerna.json | 2 +- packages/morpheme-match-all/CHANGELOG.md | 28 ++++++++++++++++ packages/morpheme-match-all/package.json | 4 +-- packages/morpheme-match-textlint/CHANGELOG.md | 11 +++++++ packages/morpheme-match-textlint/package.json | 8 ++--- packages/morpheme-match/CHANGELOG.md | 27 +++++++++++++++ packages/morpheme-match/package.json | 2 +- website/CHANGELOG.md | 28 ++++++++++++++++ website/package.json | 4 +-- 10 files changed, 137 insertions(+), 10 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 packages/morpheme-match-all/CHANGELOG.md create mode 100644 packages/morpheme-match-textlint/CHANGELOG.md create mode 100644 packages/morpheme-match/CHANGELOG.md create mode 100644 website/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a5a8807 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [2.0.0](https://github.com/azu/morpheme-match/compare/1.2.1...2.0.0) (2019-06-14) + + +### Bug Fixes + +* **api:** fix results `expected` to `dict` ([08156e8](https://github.com/azu/morpheme-match/commit/08156e8)) +* **travis:** change deploy dir ([b403eb4](https://github.com/azu/morpheme-match/commit/b403eb4)) + + +### Code Refactoring + +* **morpheme-match:** Convert to TypeScript ([3b75f80](https://github.com/azu/morpheme-match/commit/3b75f80)) +* **morpheme-match-all:** Convert to TypeScript ([8810ed9](https://github.com/azu/morpheme-match/commit/8810ed9)) + + +### Features + +* **morpheme-match-textlint:** add textlint wrapper ([#7](https://github.com/azu/morpheme-match/issues/7)) ([8f3be6a](https://github.com/azu/morpheme-match/commit/8f3be6a)) + + +### BREAKING CHANGES + +* **morpheme-match-all:** export { createTokenMatcher } instead of export default + +You should `import { createMatcher } from "morpheme-match-all"` instead of `import createTokenMatcher from "morpheme-match-all"` +* **morpheme-match:** export { createTokenMatcher } instead of export default + +You should `import { createTokenMatcher } from "morpheme-match"` instead of `import createTokenMatcher from "morpheme-match"` diff --git a/lerna.json b/lerna.json index a02f935..a5f0eb5 100644 --- a/lerna.json +++ b/lerna.json @@ -6,5 +6,5 @@ "packages/*", "website" ], - "version": "0.0.0" + "version": "2.0.0" } diff --git a/packages/morpheme-match-all/CHANGELOG.md b/packages/morpheme-match-all/CHANGELOG.md new file mode 100644 index 0000000..0fde051 --- /dev/null +++ b/packages/morpheme-match-all/CHANGELOG.md @@ -0,0 +1,28 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 2.0.0 (2019-06-14) + + +### Bug Fixes + +* **api:** fix results `expected` to `dict` ([08156e8](https://github.com/azu/morpheme-match-all/commit/08156e8)) + + +### Code Refactoring + +* **morpheme-match-all:** Convert to TypeScript ([8810ed9](https://github.com/azu/morpheme-match-all/commit/8810ed9)) + + +### Features + +* **morpheme-match-textlint:** add textlint wrapper ([#7](https://github.com/azu/morpheme-match-all/issues/7)) ([8f3be6a](https://github.com/azu/morpheme-match-all/commit/8f3be6a)) + + +### BREAKING CHANGES + +* **morpheme-match-all:** export { createTokenMatcher } instead of export default + +You should `import { createMatcher } from "morpheme-match-all"` instead of `import createTokenMatcher from "morpheme-match-all"` diff --git a/packages/morpheme-match-all/package.json b/packages/morpheme-match-all/package.json index 913df5f..43840bb 100644 --- a/packages/morpheme-match-all/package.json +++ b/packages/morpheme-match-all/package.json @@ -1,6 +1,6 @@ { "name": "morpheme-match-all", - "version": "1.2.0", + "version": "2.0.0", "description": "A wrapper of morpheme-match API. Match all kuromoji's tokens.", "keywords": [ "japanese", @@ -35,7 +35,7 @@ "watch": "tsc -p . --watch" }, "dependencies": { - "morpheme-match": "^1.2.1" + "morpheme-match": "^2.0.0" }, "devDependencies": { "@types/mocha": "^5.2.7", diff --git a/packages/morpheme-match-textlint/CHANGELOG.md b/packages/morpheme-match-textlint/CHANGELOG.md new file mode 100644 index 0000000..bf6467c --- /dev/null +++ b/packages/morpheme-match-textlint/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 2.0.0 (2019-06-14) + + +### Features + +* **morpheme-match-textlint:** add textlint wrapper ([#7](https://github.com/azu/morpheme-match/issues/7)) ([8f3be6a](https://github.com/azu/morpheme-match/commit/8f3be6a)) diff --git a/packages/morpheme-match-textlint/package.json b/packages/morpheme-match-textlint/package.json index f2901ac..2288724 100644 --- a/packages/morpheme-match-textlint/package.json +++ b/packages/morpheme-match-textlint/package.json @@ -1,6 +1,6 @@ { "name": "morpheme-match-textlint", - "version": "1.2.1", + "version": "2.0.0", "description": "morpheme-match for textlint rule.", "keywords": [ "japanese", @@ -35,17 +35,17 @@ "watch": "tsc -p . --watch" }, "dependencies": { - "morpheme-match-all": "^1.2.0" + "morpheme-match-all": "^2.0.0" }, "devDependencies": { "@types/mocha": "^5.2.7", "@types/node": "^12.0.7", "cross-env": "^5.2.0", + "kuromojin": "^1.3.2", "mocha": "^6.1.4", "ts-node": "^8.2.0", "ts-node-test-register": "^8.0.1", - "typescript": "^3.5.1", - "kuromojin": "^1.3.2" + "typescript": "^3.5.1" }, "email": "azuciao@gmail.com" } diff --git a/packages/morpheme-match/CHANGELOG.md b/packages/morpheme-match/CHANGELOG.md new file mode 100644 index 0000000..beee639 --- /dev/null +++ b/packages/morpheme-match/CHANGELOG.md @@ -0,0 +1,27 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 2.0.0 (2019-06-14) + + +### Code Refactoring + +* **morpheme-match:** Convert to TypeScript ([3b75f80](https://github.com/azu/morpheme-match/commit/3b75f80)) +* **morpheme-match-all:** Convert to TypeScript ([8810ed9](https://github.com/azu/morpheme-match/commit/8810ed9)) + + +### Features + +* **morpheme-match-textlint:** add textlint wrapper ([#7](https://github.com/azu/morpheme-match/issues/7)) ([8f3be6a](https://github.com/azu/morpheme-match/commit/8f3be6a)) + + +### BREAKING CHANGES + +* **morpheme-match-all:** export { createTokenMatcher } instead of export default + +You should `import { createMatcher } from "morpheme-match-all"` instead of `import createTokenMatcher from "morpheme-match-all"` +* **morpheme-match:** export { createTokenMatcher } instead of export default + +You should `import { createTokenMatcher } from "morpheme-match"` instead of `import createTokenMatcher from "morpheme-match"` diff --git a/packages/morpheme-match/package.json b/packages/morpheme-match/package.json index 677131d..98fb560 100644 --- a/packages/morpheme-match/package.json +++ b/packages/morpheme-match/package.json @@ -1,6 +1,6 @@ { "name": "morpheme-match", - "version": "1.2.1", + "version": "2.0.0", "description": "match function that match token(形態素解析) with sentence.", "keywords": [ "japanese", diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md new file mode 100644 index 0000000..2a067b6 --- /dev/null +++ b/website/CHANGELOG.md @@ -0,0 +1,28 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 2.0.0 (2019-06-14) + + +### Bug Fixes + +* **bootstra:** input by user and change hash ([2639142](https://github.com/azu/morpheme-match/commit/2639142)) +* **routing:** fix JSON output support ([7e56864](https://github.com/azu/morpheme-match/commit/7e56864)) +* **url:** add pathname ([9a67b2e](https://github.com/azu/morpheme-match/commit/9a67b2e)), closes [#1](https://github.com/azu/morpheme-match/issues/1) +* **website:** fix firefox encoded bug ([48e9c5f](https://github.com/azu/morpheme-match/commit/48e9c5f)) + + +### Features + +* **Analyzer:** implement parse pair "(" nad ")" ([83a7b1f](https://github.com/azu/morpheme-match/commit/83a7b1f)) +* **App:** add description ([91c104c](https://github.com/azu/morpheme-match/commit/91c104c)) +* **component:** add AnalyzedJSONField ([af310fd](https://github.com/azu/morpheme-match/commit/af310fd)) +* **component:** hidden hash change component at first ([225e2ed](https://github.com/azu/morpheme-match/commit/225e2ed)) +* **lib:** implement library ([9f47566](https://github.com/azu/morpheme-match/commit/9f47566)) +* **morpheme-match-textlint:** add textlint wrapper ([#7](https://github.com/azu/morpheme-match/issues/7)) ([8f3be6a](https://github.com/azu/morpheme-match/commit/8f3be6a)) +* **router:** add RouterStore ([81fc388](https://github.com/azu/morpheme-match/commit/81fc388)) +* **use-case:** add SideEffectLocationHash ([997e55b](https://github.com/azu/morpheme-match/commit/997e55b)) +* **website:** add SW cache ([688a2c6](https://github.com/azu/morpheme-match/commit/688a2c6)) +* **website:** add test match feature to site ([78b1861](https://github.com/azu/morpheme-match/commit/78b1861)) diff --git a/website/package.json b/website/package.json index 5c308fe..dafd20d 100644 --- a/website/package.json +++ b/website/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "1.2.1", + "version": "2.0.0", "name": "website", "files": [ "src/", @@ -43,7 +43,7 @@ "history": "^3.0.0", "kuromojin": "^1.3.0", "map-like": "^1.0.1", - "morpheme-match": "^1.2.1", + "morpheme-match": "^2.0.0", "query-string": "^4.2.2", "react": "^15.1.0", "react-dom": "^15.1.0",