-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #559 from YuukiToriyama/release/v0.2.0
release/v0.2.0をmainブランチにマージ
- Loading branch information
Showing
33 changed files
with
137 additions
and
621 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
マイナーバージョンアップやメジャーバージョンアップの際に発生する破壊的変更についてこのファイルに記載します。 | ||
それ以外の変更については[リリースノート](https://github.com/YuukiToriyama/japanese-address-parser/releases)を参照ください。 | ||
|
||
## v0.2.0 | ||
|
||
### 非推奨に指定していたモジュール、関数を削除しました([#532](https://github.com/YuukiToriyama/japanese-address-parser/pull/532))。 | ||
|
||
- `japanese_address_parser::parser::parse`や`japanese_address_parser::parser::parse_blocking`を使用しているコードは動かなくなります。 | ||
`japanese_address_parser::parser::Parser`の使用を検討してください。 | ||
- また、`japanese_address_parser::entity::Address`は`japanese_address_parser::domain::geolonia::Address`に移動しました。 | ||
そのままだと動かないので、use文を修正してください。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.1.24" | ||
version = "0.2.0" | ||
edition = "2021" | ||
description = "A Rust Library to parse japanese addresses." | ||
description = "A library for processing addresses of Japan" | ||
repository = "https://github.com/YuukiToriyama/japanese-address-parser" | ||
authors = ["Yuuki Toriyama <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -19,8 +19,8 @@ categories = ["parser-implementations", "wasm"] | |
|
||
[workspace.dependencies] | ||
log = "0.4.22" | ||
serde = { version = "1.0.192", features = ["derive"] } | ||
tokio = { version = "1.38.0", features = ["rt", "macros"] } | ||
wasm-bindgen = "0.2.92" | ||
wasm-bindgen-futures = "0.4.42" | ||
wasm-bindgen-test = "0.3.42" | ||
serde = { version = "1.0.215", features = ["derive"] } | ||
tokio = { version = "1.41.1", features = ["rt", "macros"] } | ||
wasm-bindgen = "0.2.97" | ||
wasm-bindgen-futures = "0.4.47" | ||
wasm-bindgen-test = "0.3.47" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#[cfg(feature = "experimental")] | ||
pub mod chimei_ruiju; | ||
pub mod common; | ||
pub(crate) mod chimei_ruiju; | ||
pub(crate) mod common; | ||
pub mod geolonia; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.