pumi 0.38.1 → 0.39.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/.github/workflows/build.yml +3 -1
- data/.github/workflows/update_data.yml +1 -1
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +14 -0
- data/data/communes.yml +1 -1
- data/data/districts.yml +3 -1
- data/lib/pumi/data_source/ncdd.rb +2 -1
- data/lib/pumi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7836bd7248edc3944755b789786e904c6de12c7cb2ebf07cbf51b0f4224292b1
|
|
4
|
+
data.tar.gz: 9c9f6dbf4b405db328b23eba04499ca7a1abe2b555a1764c729a51505b5c8d99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a245ea2197ac31a466ce505c8cd4a84a436b36abbc8cf52440ca11741f32d32e3292646ba672494837d6dd9282c2c04ed3ef329719a3683125af747da82668d3
|
|
7
|
+
data.tar.gz: 7252488b6093b188471654218d9920a5a991fdfae10d367444ca570da4d80dfc9932dbb30620a916f1bfe0e76e03db76ae466561995adcd45c10f4814fb0e938
|
data/.github/workflows/build.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.39.0](https://github.com/dwilkie/pumi/compare/v0.38.2...v0.39.0) (2025-11-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Update data ([#117](https://github.com/dwilkie/pumi/issues/117)) ([12506cf](https://github.com/dwilkie/pumi/commit/12506cfc6401317cc75fa9ccef306f15f8285e5d))
|
|
9
|
+
|
|
10
|
+
## [0.38.2](https://github.com/dwilkie/pumi/compare/v0.38.1...v0.38.2) (2025-10-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* configure CI for pull requests ([#114](https://github.com/dwilkie/pumi/issues/114)) ([c0f27b8](https://github.com/dwilkie/pumi/commit/c0f27b81440ca29a98bbfa90fc9e1c741c9101eb))
|
|
16
|
+
|
|
3
17
|
## [0.38.1](https://github.com/dwilkie/pumi/compare/v0.38.0...v0.38.1) (2025-10-25)
|
|
4
18
|
|
|
5
19
|
|
data/data/communes.yml
CHANGED
data/data/districts.yml
CHANGED
|
@@ -155,7 +155,7 @@ districts:
|
|
|
155
155
|
'0110':
|
|
156
156
|
name:
|
|
157
157
|
km: ប៉ោយប៉ែត
|
|
158
|
-
latin:
|
|
158
|
+
latin: Poipet
|
|
159
159
|
ungegn: Paôypêt
|
|
160
160
|
administrative_unit:
|
|
161
161
|
km: ក្រុង
|
|
@@ -1254,6 +1254,8 @@ districts:
|
|
|
1254
1254
|
latin: Krong
|
|
1255
1255
|
en: Municipality
|
|
1256
1256
|
ungegn: Krŏng
|
|
1257
|
+
links:
|
|
1258
|
+
wikipedia: https://en.wikipedia.org/wiki/Bokor,_Cambodia
|
|
1257
1259
|
'0801':
|
|
1258
1260
|
name:
|
|
1259
1261
|
km: កណ្ដាលស្ទឹង
|
|
@@ -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
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.
|
|
4
|
+
version: 0.39.0
|
|
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-
|
|
11
|
+
date: 2025-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|