Skip to content

Commit

Permalink
v1.9.0
Browse files Browse the repository at this point in the history
* Add new `.find_all_by_country_name` method (@wilburhimself)
  • Loading branch information
timrogers committed May 4, 2024
1 parent 305cbaf commit 719dc79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.9.0 (4 May, 2024)

* Add new `.find_all_by_country_name` method (@wilburhimself)

## v1.8.3 (31 March, 2024)

* Add Kertajati International Airport (KJT) (@chakraskun)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
gem "airports", "~> 1.9.0"
```

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`:
Expand Down
2 changes: 1 addition & 1 deletion lib/airports/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Airports
VERSION = "1.8.3"
VERSION = "1.9.0"
end

0 comments on commit 719dc79

Please sign in to comment.