airports 1.8.1 → 1.8.2

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: 150845add0469561f31778e949997cdeff5de81db171dccddb2142bd6c2e11fe
4
+ data.tar.gz: a21e2f1d762e66d887c49f58f4e8352ddbca885ec56783932093f7b07d8cdbe5
5
5
  SHA512:
6
- metadata.gz: 763d32d7a1b9a0f3d5c164591eb0ecc417f40f62703e1ecfc76e1d61de8c4a46a515d06e7728a6ed5e469dcc2e756c2931f3cb9dd4455b152546dea648e885d2
7
- data.tar.gz: 349023d8dff676608f1c88f064c99845a422442ec4118b2f8d309cd16604b63d04ad2a9c8695cd82d08b9b45e3b01dd151dc8390ec407728f44ca4525cf0ed91
6
+ metadata.gz: ad9d6c479a67d99fd1a408356ce5299f3b6ab70b879851631ca849dba4aa961428fa46534752452badad1bbecb9a6ed141d60c7f8bfe215835276e27e275c23f
7
+ data.tar.gz: 821c81755af5347543ab6e6b915f7cf231748d16da94691ca9ebb4f1e9004b77187dbb4e3d8fbe048fa110b324935184343858341e63ea0207de0d17351ce6d7
@@ -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,7 @@
1
+ ## v1.8.2 (22 March, 2024)
2
+
3
+ * Add the new Tulum Airport (TQO) (@rmm5t)
4
+
1
5
  ## v1.8.1 (17 February 2023)
2
6
 
3
7
  * 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.2"
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`: