From 8249d771aa3aa320d19cbb1161956edc7f14e908 Mon Sep 17 00:00:00 2001 From: Taku Fukada Date: Fri, 1 Sep 2023 18:13:40 +0900 Subject: [PATCH 1/2] =?UTF-8?q?"=E4=BA=88=E5=82=99=E5=90=8D"=20=E3=83=95?= =?UTF-8?q?=E3=82=A3=E3=83=BC=E3=83=AB=E3=83=89=E3=81=AB=E5=AF=BE=E5=BF=9C?= =?UTF-8?q?=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 2 +- pyproject.toml | 2 +- src/mojxml/parse.py | 1 + src/mojxml/schema.py | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cbd920f..1d88508 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,4 +7,4 @@ updates: - package-ecosystem: "pip" directory: "/" schedule: - interval: "weekly" + interval: "monthly" diff --git a/pyproject.toml b/pyproject.toml index aefb2e6..756b926 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mojxml" -version = "0.3.0" +version = "0.3.1" description = 'A tool for fast conversion of Japanese "MOJ Map XML" (land registration polygons) into geospatial formats.' authors = ["MIERUNE Inc. "] readme = "README.md" diff --git a/src/mojxml/parse.py b/src/mojxml/parse.py index d50e0aa..bbe89e1 100644 --- a/src/mojxml/parse.py +++ b/src/mojxml/parse.py @@ -151,6 +151,7 @@ def _parse_features( "大字名": None, "丁目名": None, "小字名": None, + "予備名": None, "地番": None, "座標値種別": None, "筆界未定構成筆": None, diff --git a/src/mojxml/schema.py b/src/mojxml/schema.py index a7113f6..4d18c64 100644 --- a/src/mojxml/schema.py +++ b/src/mojxml/schema.py @@ -26,6 +26,7 @@ class _SchemaType(TypedDict): ("大字名", "str"), ("丁目名", "str"), ("小字名", "str"), + ("予備名", "str"), ("地番", "str"), ("筆界未定構成筆", "str"), ("精度区分", "str"), From 4e05ceb371c5ee7e8378742c9a9d81e07ab29ad3 Mon Sep 17 00:00:00 2001 From: Taku Fukada Date: Fri, 1 Sep 2023 18:17:32 +0900 Subject: [PATCH 2/2] Bump version to 0.4.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 756b926..7b798aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mojxml" -version = "0.3.1" +version = "0.4.0" description = 'A tool for fast conversion of Japanese "MOJ Map XML" (land registration polygons) into geospatial formats.' authors = ["MIERUNE Inc. "] readme = "README.md"