From e54d850dd34903430e231bfcc98f3ae4d189913e Mon Sep 17 00:00:00 2001 From: Tim Rogers Date: Sun, 31 Mar 2024 19:41:10 +0100 Subject: [PATCH] v1.8.3 * Add Kertajati International Airport (KJT) (@chakraskun) --- CHANGELOG.md | 4 ++++ README.md | 2 +- lib/airports/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3fbde8..4548fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.8.3 (31 March, 2024) + +* Add Kertajati International Airport (KJT) (@chakraskun) + ## v1.8.2 (22 March, 2024) * Add the new Tulum Airport (TQO) (@rmm5t) diff --git a/README.md b/README.md index 9c8ecc5..0fc3153 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ It's based on data from [OpenFlights](http://openflights.org), with a bit of mas Install the gem by adding it to your Gemfile: ```ruby -gem "airports", "~> 1.8.2" +gem "airports", "~> 1.8.3" ``` 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`: diff --git a/lib/airports/version.rb b/lib/airports/version.rb index 744e158..e6b2589 100644 --- a/lib/airports/version.rb +++ b/lib/airports/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Airports - VERSION = "1.8.2" + VERSION = "1.8.3" end