pumi 0.38.1 → 0.38.2
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/.github/workflows/build.yml +3 -1
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/data/communes.yml +1 -1
- data/data/districts.yml +1 -1
- data/lib/pumi/data_source/ncdd.rb +2 -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: dcfd5a72f669052493c39b28fb66ec35bd43ccbd8d2c65767aaf86e87db4ae90
|
|
4
|
+
data.tar.gz: 8245eb386808d6dbc67e561b4d44a42c3c757dcb5c2fd8602705775e47dc7659
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b6b1bf0f06f10a8701a74be77fca3037a49dac183a646da3e95781b75a5385f5fab5f760e96c28b9e6392e5da331439ac015701dc52c0ca450965b7504841af
|
|
7
|
+
data.tar.gz: 2540c080f338ec0732f6fdda7b96cd669f7b44bde86c62993f2f3d010000cc9ab3b075d4665083b80f8bed404d06151f05334b95659100e3483fb5151e3ffc2d
|
data/.github/workflows/build.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.38.2](https://github.com/dwilkie/pumi/compare/v0.38.1...v0.38.2) (2025-10-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* configure CI for pull requests ([#114](https://github.com/dwilkie/pumi/issues/114)) ([c0f27b8](https://github.com/dwilkie/pumi/commit/c0f27b81440ca29a98bbfa90fc9e1c741c9101eb))
|
|
9
|
+
|
|
3
10
|
## [0.38.1](https://github.com/dwilkie/pumi/compare/v0.38.0...v0.38.1) (2025-10-25)
|
|
4
11
|
|
|
5
12
|
|
data/data/communes.yml
CHANGED
data/data/districts.yml
CHANGED
|
@@ -26,7 +26,8 @@ module Pumi
|
|
|
26
26
|
Misspelling.new(incorrect_text: "Taing Kouk", correct_text: "Tang 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
|
-
Misspelling.new(incorrect_text: "OMal", correct_text: "Ou Mal")
|
|
29
|
+
Misspelling.new(incorrect_text: "OMal", correct_text: "Ou Mal"),
|
|
30
|
+
Misspelling.new(incorrect_text: "Paoy Paet", correct_text: "Poipet")
|
|
30
31
|
].freeze
|
|
31
32
|
|
|
32
33
|
AdministrativeUnit = Struct.new(:en, :km, :latin, :ungegn, :code_length, :group, :type, keyword_init: true)
|
data/lib/pumi/version.rb
CHANGED