Skip to content

Commit e5f6774

Browse files
authored
Merge pull request #46 from yurichechulin/add-188-region-cod
Add 188 region code
2 parents f63b21b + 3f5e03d commit e5f6774

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs: # Docs: <https://git.io/JvxXE>
2323
php: ['7.2', '7.3', '7.4', '8.0']
2424
steps:
2525
- name: Check out code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Setup PHP, with composer and extensions
2929
uses: shivammathur/setup-php@v2 # Action page: <https://github.com/shivammathur/setup-php>
@@ -36,7 +36,7 @@ jobs: # Docs: <https://git.io/JvxXE>
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: Cache dependencies # Docs: <https://git.io/JfAKn#php---composer>
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: ${{ runner.os }}-composer-${{ matrix.setup }}-${{ hashFiles('**/composer.json') }}
@@ -76,7 +76,7 @@ jobs: # Docs: <https://git.io/JvxXE>
7676
runs-on: ubuntu-20.04
7777
steps:
7878
- name: Check out code
79-
uses: actions/checkout@v2
79+
uses: actions/checkout@v4
8080

8181
- name: Lint changelog file
8282
uses: docker://avtodev/markdown-lint:v1 # Action page: <https://github.com/avto-dev/markdown-lint>

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].
66

7+
## Unreleased
8+
9+
### Added
10+
11+
- GIBDD region code for `Kharkovskaja oblast` - `188`
12+
713
## v3.16.0
814

915
### Added

data/subject/codes.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,5 +795,13 @@
795795
181
796796
],
797797
"code_iso_31662": "UA-09"
798+
},
799+
{
800+
"title": "Харьковская область",
801+
"code": 188,
802+
"gibdd": [
803+
188
804+
],
805+
"code_iso_31662": "UA-63"
798806
}
799807
]

data/subject/codes.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"code": {
1313
"type": "integer",
1414
"minimum": 1,
15-
"maximum": 185
15+
"maximum": 188
1616
},
1717
"gibdd": {
1818
"type": "array",

0 commit comments

Comments
 (0)