diff --git a/Gemfile.lock b/Gemfile.lock index 9701ea8..472bf9b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: . specs: - poke-api-v2 (0.1.0) + poke-api-v2 (0.1.1) GEM remote: https://rubygems.org/ specs: - addressable (2.6.0) - public_suffix (>= 2.0.2, < 4.0) + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) ast (2.4.0) axiom-types (0.1.1) descendants_tracker (~> 0.0.4) @@ -39,7 +39,7 @@ GEM coderay (~> 1.1.0) method_source (~> 0.9.0) psych (3.1.0) - public_suffix (3.0.3) + public_suffix (4.0.6) rainbow (3.0.0) rake (13.0.1) rb-readline (0.5.5) @@ -107,4 +107,4 @@ DEPENDENCIES webmock BUNDLED WITH - 2.0.1 + 2.1.4 diff --git a/README.md b/README.md index 6122b1e..308f633 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ PokeApi.get(pokemon_shape: {limit: 5, page: 2}) # #]> ``` -All of the data presented follows the identical patterns described by the API. For a complete list of endpoints and keys, please check out the [PokéAPI Docs](https://pokeapi.co/docs/v2.html). +All of the data presented follows the identical patterns described by the API. For a complete list of endpoints and keys, please check out the [PokéAPI Docs](https://pokeapi.co/docs/v2). ## Contributing diff --git a/lib/config/version.rb b/lib/config/version.rb index 67dbeac..66ff37d 100644 --- a/lib/config/version.rb +++ b/lib/config/version.rb @@ -1,3 +1,3 @@ module PokeApi - VERSION = '0.1.0'.freeze + VERSION = '0.1.1'.freeze end diff --git a/spec/unit/poke-api-v2_spec.rb b/spec/unit/poke-api-v2_spec.rb index 8ba01cc..905dbaa 100644 --- a/spec/unit/poke-api-v2_spec.rb +++ b/spec/unit/poke-api-v2_spec.rb @@ -1,7 +1,7 @@ RSpec.describe PokeApi, :vcr do describe 'version' do it 'should be the correct number' do - expect(PokeApi::VERSION).to eq('0.1.0') + expect(PokeApi::VERSION).to eq('0.1.1') end end