From 6672182107d233bc6ccfb68e70746e002ebaa827 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Wed, 11 Sep 2019 23:38:06 +0100 Subject: [PATCH] Version 1.1.1 --- CHANGELOG.md | 7 ++++++- lib/thegamesdb/version.rb | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5674750..f237799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Changelog +## 1.1.1 +* Adds `platform_id` parameter to `games_by_name` +* Adds `page` parameter to `games_by_name` +* Adds extra fields and boxart to `games_by_name` response +* Refactors `process_platform_games` + ## 1.1.0 * Adds `page` parameter to `games_by_platform_id` and includes `boxart`. * Adds all available fields from Platforms in `platforms`, updates tests. Changes `:slug` to `:alias` in platforms response, to map to same response from API. * Refactored `json_response` to use `includes` and extra data from the API response. - ## 1.0.0 * Updated to new API endpoint, API key is now required to use the gem. Request an API Key here: https://forums.thegamesdb.net/viewforum.php?f=10 diff --git a/lib/thegamesdb/version.rb b/lib/thegamesdb/version.rb index 4f7f318..c819cc0 100644 --- a/lib/thegamesdb/version.rb +++ b/lib/thegamesdb/version.rb @@ -1,4 +1,4 @@ # Gem version module Gamesdb - VERSION = '1.1.0'.freeze + VERSION = '1.1.1'.freeze end