Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jun 14, 2019
1 parent 4d5832e commit 3c3aa52
Show file tree
Hide file tree
Showing 10 changed files with 137 additions and 10 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"`
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"packages/*",
"website"
],
"version": "0.0.0"
"version": "2.0.0"
}
28 changes: 28 additions & 0 deletions packages/morpheme-match-all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"`
4 changes: 2 additions & 2 deletions packages/morpheme-match-all/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
11 changes: 11 additions & 0 deletions packages/morpheme-match-textlint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
8 changes: 4 additions & 4 deletions packages/morpheme-match-textlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "morpheme-match-textlint",
"version": "1.2.1",
"version": "2.0.0",
"description": "morpheme-match for textlint rule.",
"keywords": [
"japanese",
Expand Down Expand Up @@ -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"
}
27 changes: 27 additions & 0 deletions packages/morpheme-match/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"`
2 changes: 1 addition & 1 deletion packages/morpheme-match/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
28 changes: 28 additions & 0 deletions website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "1.2.1",
"version": "2.0.0",
"name": "website",
"files": [
"src/",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 3c3aa52

Please sign in to comment.