airports 1.13.0 → 1.14.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/codeql-analysis.yml +1 -1
- data/.github/workflows/test_and_lint.yml +2 -2
- data/.tool-versions +1 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile +2 -2
- data/Rakefile +1 -1
- data/data/airports.json +1 -1
- data/data/patches.dat +1 -0
- data/lib/airports/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1af36a5f48ec2356dd8a48c12396e3f88a1a05076fcf8eaef39892c3cf182bc5
|
|
4
|
+
data.tar.gz: 47371503a45d7e0db0db255e4dea81b956bcd2be0d19d7308984faeb07355341
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8ed9c0bffec2950104f4539a9c7e1449a7d9a7f17d9acb0782e6e17b3693295f6ab9ab0ab7a252b67ba6657797a342a11df05fd1ec81b0be4b85fc46e89aac4
|
|
7
|
+
data.tar.gz: 55e7183fe4e1359967e962ac04704116e10dacf0a255f78aa92549fb3ecb4f82915dddf805c293cc1ff73e3c8aab8f18afc261b23de97b62dba979998c3db7b3
|
|
@@ -9,10 +9,10 @@ jobs:
|
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
strategy:
|
|
11
11
|
matrix:
|
|
12
|
-
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
|
|
12
|
+
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
|
|
13
13
|
steps:
|
|
14
14
|
- name: Checkout code
|
|
15
|
-
uses: actions/checkout@
|
|
15
|
+
uses: actions/checkout@v7
|
|
16
16
|
- name: Setup Ruby ${{ matrix.ruby_version }}
|
|
17
17
|
uses: ruby/setup-ruby@v1
|
|
18
18
|
with:
|
data/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby
|
|
1
|
+
ruby 4.0.2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## v1.14.0 (17 August, 2026)
|
|
2
|
+
|
|
3
|
+
- Add DJT/KDJT airport code mapping for renamed Palm Beach airport (@Copilot)
|
|
4
|
+
- Update rubocop requirement from ~> 1.88.0 to ~> 1.89.0 (@dependabot)
|
|
5
|
+
|
|
6
|
+
## v1.13.0 (2 April, 2026)
|
|
7
|
+
|
|
8
|
+
- Fix name for `PBH` from Thimphu to Paro (@Copilot)
|
|
9
|
+
- Update rubocop requirement from ~> 1.78.0 to ~> 1.84.2 (@dependabot)
|
|
10
|
+
- Update pry requirement from ~> 0.15.0 to ~> 0.16.0 (@dependabot)
|
|
11
|
+
- Bump actions/checkout from 4 to 6 (@dependabot)
|
|
12
|
+
- Bump github/codeql-action from 3 to 4 (@dependabot)
|
|
13
|
+
|
|
14
|
+
## v1.12.0 (21 July, 2025)
|
|
15
|
+
|
|
16
|
+
- Add NLU (Felipe Ángeles International Airport) (@iRonin)
|
|
17
|
+
- Add TFU (Chengdu Tianfu International Airport) (@iRonin)
|
|
18
|
+
|
|
1
19
|
## v1.11.0 (24 March, 2025)
|
|
2
20
|
|
|
3
21
|
- Add Monmouth Executive Airport (BLM) (@FinnLawrence)
|
data/Gemfile
CHANGED
|
@@ -4,11 +4,11 @@ source 'https://rubygems.org'
|
|
|
4
4
|
|
|
5
5
|
gemspec
|
|
6
6
|
|
|
7
|
-
gem "gc_ruboconfig", "~>
|
|
7
|
+
gem "gc_ruboconfig", "~> 6.0.0"
|
|
8
8
|
gem "pry", "~> 0.16.0"
|
|
9
9
|
gem "rake", "~> 13.0"
|
|
10
10
|
gem "rspec", "~> 3.13.0"
|
|
11
11
|
gem "rspec-its", "~> 2.0.0"
|
|
12
12
|
gem "rspec_junit_formatter", "~> 0.6.0"
|
|
13
|
-
gem "rubocop", "~> 1.
|
|
13
|
+
gem "rubocop", "~> 1.89.0"
|
|
14
14
|
gem "rubocop-rake", "~> 0.7.1", require: false
|