pumi 0.44.0 → 0.44.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/data/districts.yml +1 -1
- data/data/villages.yml +4 -4
- data/lib/pumi/data_source/ncdd.rb +1 -1
- data/lib/pumi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0074d955b52552bcbc18d39613c23fd1c8876d6b1ec743940e46445662845535
|
|
4
|
+
data.tar.gz: d8e1ea3adb1ca6f8ec5d18dadebfed0d195d8c1376e0062c3c0144627e8ef38e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3056bbb81e8e371c2e7398b02549e65e5ad5298a76bd07852f87c97fd53e4a60797af24b6d96930b9ddade84516337ec8ac2249225641ee607220a6a17713dc
|
|
7
|
+
data.tar.gz: fdd044e262e2ed1e0e6b20aba9a3ae15fd68a139aaea7161010bf2165678d6321021a41661a44c29267e387652c7b85e97c7631fc90ed472b2d545d7f54c3b10
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.44.1](https://github.com/dwilkie/pumi/compare/v0.44.0...v0.44.1) (2026-09-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Update misspellings ([#138](https://github.com/dwilkie/pumi/issues/138)) ([8ee4b04](https://github.com/dwilkie/pumi/commit/8ee4b04e6d7b7c5730acb60441948d5fc14f12bd))
|
|
9
|
+
|
|
3
10
|
## [0.44.0](https://github.com/dwilkie/pumi/compare/v0.43.0...v0.44.0) (2026-09-13)
|
|
4
11
|
|
|
5
12
|
|
data/data/districts.yml
CHANGED
data/data/villages.yml
CHANGED
|
@@ -14115,7 +14115,7 @@ villages:
|
|
|
14115
14115
|
'03010907':
|
|
14116
14116
|
name:
|
|
14117
14117
|
km: តាំងគោក
|
|
14118
|
-
latin:
|
|
14118
|
+
latin: Taing Kouk
|
|
14119
14119
|
administrative_unit:
|
|
14120
14120
|
km: ភូមិ
|
|
14121
14121
|
latin: Phum
|
|
@@ -19578,7 +19578,7 @@ villages:
|
|
|
19578
19578
|
'03130708':
|
|
19579
19579
|
name:
|
|
19580
19580
|
km: តាំងគោក
|
|
19581
|
-
latin:
|
|
19581
|
+
latin: Taing Kouk
|
|
19582
19582
|
administrative_unit:
|
|
19583
19583
|
km: ភូមិ
|
|
19584
19584
|
latin: Phum
|
|
@@ -46047,7 +46047,7 @@ villages:
|
|
|
46047
46047
|
'06090501':
|
|
46048
46048
|
name:
|
|
46049
46049
|
km: តាំងគោក
|
|
46050
|
-
latin:
|
|
46050
|
+
latin: Taing Kouk
|
|
46051
46051
|
administrative_unit:
|
|
46052
46052
|
km: ភូមិ
|
|
46053
46053
|
latin: Phum
|
|
@@ -90489,7 +90489,7 @@ villages:
|
|
|
90489
90489
|
'15070116':
|
|
90490
90490
|
name:
|
|
90491
90491
|
km: តាំងគោក
|
|
90492
|
-
latin:
|
|
90492
|
+
latin: Taing Kouk
|
|
90493
90493
|
administrative_unit:
|
|
90494
90494
|
km: ភូមិ
|
|
90495
90495
|
latin: Phum
|
|
@@ -23,7 +23,7 @@ module Pumi
|
|
|
23
23
|
Misspelling.new(incorrect_text: "Preaek Chrey", correct_text: "Preaek Chrey"),
|
|
24
24
|
Misspelling.new(incorrect_text: "Saensokh", correct_text: "Sen Sok"),
|
|
25
25
|
Misspelling.new(incorrect_text: "Kaeb", correct_text: "Kep"),
|
|
26
|
-
Misspelling.new(incorrect_text: "
|
|
26
|
+
Misspelling.new(incorrect_text: "Tang Kouk", correct_text: "Taing Kouk"),
|
|
27
27
|
Misspelling.new(incorrect_text: "Mongkol Borei", correct_text: "Mongkol Borey"),
|
|
28
28
|
Misspelling.new(incorrect_text: "wat Kor", correct_text: "Wat Kor"),
|
|
29
29
|
Misspelling.new(incorrect_text: "OMal", correct_text: "Ou Mal"),
|
data/lib/pumi/version.rb
CHANGED