airports 1.8.1 → 1.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2e5d0988c1ef3435d46deab245baddf896c546659a3a16648bc57a66f95aaf3
4
- data.tar.gz: fcbc01043e808ccc7ae6a5a364ca10a20f531c547b3d2d0f751c2528ef57523d
3
+ metadata.gz: 4749aa453e765581488b9d30e95a5f3059f5beeca8bddc08a9b190af4efa24f8
4
+ data.tar.gz: 1c9df0662c1c55724578d4b72c38d692b33464a3a36029e9d4c629e96f4dd51e
5
5
  SHA512:
6
- metadata.gz: 763d32d7a1b9a0f3d5c164591eb0ecc417f40f62703e1ecfc76e1d61de8c4a46a515d06e7728a6ed5e469dcc2e756c2931f3cb9dd4455b152546dea648e885d2
7
- data.tar.gz: 349023d8dff676608f1c88f064c99845a422442ec4118b2f8d309cd16604b63d04ad2a9c8695cd82d08b9b45e3b01dd151dc8390ec407728f44ca4525cf0ed91
6
+ metadata.gz: b58446ff9059f6b9ccb96d53cb4c75ddbd2a4e36001f0fa2729dab0e62caae7c31ad38813ad9ebcfdf8cabbbd9018f5158f7be946d188c24b3d3f98885c344a4
7
+ data.tar.gz: c79288d2173432b8bd8c6dc05bbefff8c0ba519d76b0eec3659820313232f0ac3fecec3fd1a34cc1d79d475ec01f5ab5d3b6a6757211c89fc22cc882c18212a7
@@ -38,11 +38,11 @@ jobs:
38
38
 
39
39
  steps:
40
40
  - name: Checkout repository
41
- uses: actions/checkout@v3
41
+ uses: actions/checkout@v4
42
42
 
43
43
  # Initializes the CodeQL tools for scanning.
44
44
  - name: Initialize CodeQL
45
- uses: github/codeql-action/init@v2
45
+ uses: github/codeql-action/init@v3
46
46
  with:
47
47
  languages: ${{ matrix.language }}
48
48
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
56
56
  # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57
57
  # If this step fails, then you should remove it and run the build manually (see below)
58
58
  - name: Autobuild
59
- uses: github/codeql-action/autobuild@v2
59
+ uses: github/codeql-action/autobuild@v3
60
60
 
61
61
  # ℹ️ Command-line programs to run using the OS shell.
62
62
  # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
69
69
  # ./location_of_script_within_repo/buildscript.sh
70
70
 
71
71
  - name: Perform CodeQL Analysis
72
- uses: github/codeql-action/analyze@v2
72
+ uses: github/codeql-action/analyze@v3
@@ -12,7 +12,7 @@ jobs:
12
12
  ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2.0-preview1']
13
13
  steps:
14
14
  - name: Checkout code
15
- uses: actions/checkout@v3
15
+ uses: actions/checkout@v4
16
16
  - name: Setup Ruby ${{ matrix.ruby_version }}
17
17
  uses: ruby/setup-ruby@v1
18
18
  with:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## v1.8.3 (31 March, 2024)
2
+
3
+ * Add Kertajati International Airport (KJT) (@chakraskun)
4
+
5
+ ## v1.8.2 (22 March, 2024)
6
+
7
+ * Add the new Tulum Airport (TQO) (@rmm5t)
8
+
1
9
  ## v1.8.1 (17 February 2023)
2
10
 
3
11
  * Fix the name of Tromsø Airport (TOS) (@pcothenet)
data/Gemfile CHANGED
@@ -7,8 +7,8 @@ gemspec
7
7
  gem "gc_ruboconfig", "~> 3.6.0"
8
8
  gem "pry", "~> 0.14.1"
9
9
  gem "rake", "~> 13.0"
10
- gem "rspec", "~> 3.12.0"
10
+ gem "rspec", "~> 3.13.0"
11
11
  gem "rspec-its", "~> 1.3.0"
12
12
  gem "rspec_junit_formatter", "~> 0.6.0"
13
- gem "rubocop", "~> 1.45.1"
13
+ gem "rubocop", "~> 1.50.1"
14
14
  gem "rubocop-rake", "~> 0.6.0", require: false
data/README.md CHANGED
@@ -11,7 +11,7 @@ It's based on data from [OpenFlights](http://openflights.org), with a bit of mas
11
11
  Install the gem by adding it to your Gemfile:
12
12
 
13
13
  ```ruby
14
- gem "airports", "~> 1.8.1"
14
+ gem "airports", "~> 1.8.3"
15
15
  ```
16
16
 
17
17
  You can then look up an airport by its IATA code (e.g. `LHR` for London Heathrow) using `Airports.find_by_iata_code`, which returns an object with a bunch of accessors like `name` and `city`: