pumi 0.38.0 → 0.38.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9037f497c0aae5a66c2e948dd7e0d5a06f4a9b7c1ad98409859b947a268a20b7
4
- data.tar.gz: 289cdaa1325de2089aec4b467ffc6c55b0df6d3ea5d002bbcea082dabf0dd3c7
3
+ metadata.gz: e10b7edfad803d33f0afd54cce94fe06d39e22f61c96aff26673733e27451e37
4
+ data.tar.gz: 622c86c9ab3e787914f3cabf6786ce7e124f211bde25267144af714ca68b2472
5
5
  SHA512:
6
- metadata.gz: b319a7be63c36c4a1d5761ec26d4a16b669c93e7fccdf66097c84573904ddd61407b8370a936090f64c55159e917169e9aa7cb8623f615349afa92b8cf5b265b
7
- data.tar.gz: afbc04bdc770420beede316d70a642d15262e4830dc36f26cafb61f52a33388c499e46f9308daa412649918ba7b0863e732a0aeff16c13afa15b6c51fca02204
6
+ metadata.gz: 4d416d2e8ea448c29354f782664c221a56357c831e95dadb44fe4ae6ab79eb7e5af7ca17e328e9dffa1a1b871428dc57fceb399474a3214e855040b1d74ecf0e
7
+ data.tar.gz: b46332f54e7570276922a960621a28bf3448aab13c60b6085be0e7a74bea528b12939993a35b6fe904a87807b9fcdc7e49051e99a605b6f3409a1162072c4563
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.38.0"
2
+ ".": "0.38.1"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.38.1](https://github.com/dwilkie/pumi/compare/v0.38.0...v0.38.1) (2025-10-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Add more misspellings ([#111](https://github.com/dwilkie/pumi/issues/111)) ([e8cfc71](https://github.com/dwilkie/pumi/commit/e8cfc71d04bd4da580211084a39ea0752e204840))
9
+
3
10
  ## [0.38.0](https://github.com/dwilkie/pumi/compare/v0.37.0...v0.38.0) (2025-10-10)
4
11
 
5
12
 
data/data/communes.yml CHANGED
@@ -1704,7 +1704,7 @@ communes:
1704
1704
  '020307':
1705
1705
  name:
1706
1706
  km: អូរម៉ាល់
1707
- latin: OMal
1707
+ latin: Ou Mal
1708
1708
  administrative_unit:
1709
1709
  km: សង្កាត់
1710
1710
  latin: Sangkat
@@ -1723,7 +1723,7 @@ communes:
1723
1723
  '020308':
1724
1724
  name:
1725
1725
  km: វត្ដគរ
1726
- latin: wat Kor
1726
+ latin: Wat Kor
1727
1727
  administrative_unit:
1728
1728
  km: សង្កាត់
1729
1729
  latin: Sangkat
data/data/districts.yml CHANGED
@@ -3,14 +3,14 @@ districts:
3
3
  '0102':
4
4
  name:
5
5
  km: មង្គលបូរី
6
- latin: Mongkol Borei
6
+ latin: Mongkol Borey
7
7
  administrative_unit:
8
8
  km: ស្រុក
9
9
  latin: Srok
10
10
  en: District
11
11
  ungegn: Srŏk
12
12
  links:
13
- wikipedia: https://en.wikipedia.org/wiki/Mongkol_Borei_District
13
+ wikipedia: https://en.wikipedia.org/wiki/Mongkol_Borey_district
14
14
  geodata:
15
15
  lat: '13.4940861'
16
16
  long: '102.9791567'
data/data/villages.yml CHANGED
@@ -55947,7 +55947,7 @@ villages:
55947
55947
  '08081411':
55948
55948
  name:
55949
55949
  km: មង្គលបូរី
55950
- latin: Mongkol Borei
55950
+ latin: Mongkol Borey
55951
55951
  administrative_unit:
55952
55952
  km: ភូមិ
55953
55953
  latin: Phum
@@ -23,7 +23,10 @@ module Pumi
23
23
  Misspelling.new(incorrect_text: "Prea​ek 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: "Taing Kouk", correct_text: "Tang Kouk")
26
+ Misspelling.new(incorrect_text: "Taing Kouk", correct_text: "Tang Kouk"),
27
+ Misspelling.new(incorrect_text: "Mongkol Borei", correct_text: "Mongkol Borey"),
28
+ Misspelling.new(incorrect_text: "wat Kor", correct_text: "Wat Kor"),
29
+ Misspelling.new(incorrect_text: "OMal", correct_text: "Ou Mal")
27
30
  ].freeze
28
31
 
29
32
  AdministrativeUnit = Struct.new(:en, :km, :latin, :ungegn, :code_length, :group, :type, keyword_init: true)
data/lib/pumi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pumi
2
- VERSION = "0.38.0".freeze
2
+ VERSION = "0.38.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pumi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.38.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Wilkie
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-10-10 00:00:00.000000000 Z
11
+ date: 2025-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler