Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
* Drop support for Ruby 2.2, which has reached end-of-life and no
longer receives security updates (@timrogers)
* Enforce code style using Rubocop (@timrogers)
  • Loading branch information
Tim Rogers committed Mar 11, 2018
1 parent cb144d7 commit 3d51318
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v1.2.0 (11 March 2018)

* Drop support for Ruby 2.2, which has reached end-of-life and no longer receives security updates (@timrogers)
* Enforce code style using Rubocop (@timrogers)

# v1.1.0 (11 March 2018)

* Add new `.find_by_icao_code` for finding airports by their ICAO code (@ryanburnett)
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.1.0'
gem 'airports', '~> 1.2.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,3 +1,3 @@
module Airports
VERSION = "1.1.0".freeze
VERSION = "1.2.0".freeze
end

0 comments on commit 3d51318

Please sign in to comment.