pumi 0.35.0 → 0.36.0
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/lib/pumi/data_source/ncdd.rb +4 -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: 14d32bca2e2ab3aaa832454dad60ac158ce0c1b119efdc53fb713eda851e0c6d
|
4
|
+
data.tar.gz: 8827d4c3ef447f5b8b9b259f27dc7dd725824cecc2f353849b2052b622b6473a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e35d42e685f80eb9f5e740602ba41fff89c4423aa94b2903d91920ea438f9eadf7439e5e50d8bdd27e8bfae30b847c4b34bc93b27a03770e5dd8e5a7115b287
|
7
|
+
data.tar.gz: 291375a3eb0de03ce1595b8832518ecaeb3f9bb8ad33f98053b37d1af118621a875e059c138b9adcb5f3c7fefa072fe3fa0eed896bc2faeea961a32b90f5332d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.36.0](https://github.com/dwilkie/pumi/compare/v0.35.0...v0.36.0) (2025-07-21)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Add more latin misspellings ([#102](https://github.com/dwilkie/pumi/issues/102)) ([1105e3c](https://github.com/dwilkie/pumi/commit/1105e3cee219137a4a3baf73c6aa51969727052a))
|
9
|
+
|
3
10
|
## [0.35.0](https://github.com/dwilkie/pumi/compare/v0.34.0...v0.35.0) (2025-07-21)
|
4
11
|
|
5
12
|
|
@@ -20,7 +20,10 @@ module Pumi
|
|
20
20
|
Misspelling.new(incorrect_text: "Siem Reab", correct_text: "Siem Reap"),
|
21
21
|
Misspelling.new(incorrect_text: "Aoral", correct_text: "Aural"),
|
22
22
|
Misspelling.new(incorrect_text: "Angk Romeas", correct_text: "Angk Romeas"),
|
23
|
-
Misspelling.new(incorrect_text: "Preaek Chrey", correct_text: "Preaek Chrey")
|
23
|
+
Misspelling.new(incorrect_text: "Preaek Chrey", correct_text: "Preaek Chrey"),
|
24
|
+
Misspelling.new(incorrect_text: "Saensokh", correct_text: "Sen Sok"),
|
25
|
+
Misspelling.new(incorrect_text: "Kaeb", correct_text: "Kep"),
|
26
|
+
Misspelling.new(incorrect_text: "Taing Kouk", correct_text: "Tang Kouk")
|
24
27
|
].freeze
|
25
28
|
|
26
29
|
AdministrativeUnit = Struct.new(:en, :km, :latin, :ungegn, :code_length, :group, :type, keyword_init: true)
|
data/lib/pumi/version.rb
CHANGED