From 3d513182aeca663119475b7d2c8041ff278d209a Mon Sep 17 00:00:00 2001 From: Tim Rogers Date: Sun, 11 Mar 2018 19:20:55 +0000 Subject: [PATCH] v1.2.0 * 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) --- CHANGELOG.md | 5 +++++ README.md | 2 +- lib/airports/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab6b02..4bd5e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 97b5343..4d7b7d7 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.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`: diff --git a/lib/airports/version.rb b/lib/airports/version.rb index 6cec14f..a84cc14 100644 --- a/lib/airports/version.rb +++ b/lib/airports/version.rb @@ -1,3 +1,3 @@ module Airports - VERSION = "1.1.0".freeze + VERSION = "1.2.0".freeze end