Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Bump faraday dependency to ~> 1.0
Browse files Browse the repository at this point in the history
Also:
- How long will http based URL’s continue to haunt me?
- Version 1.0.0 because why not?
  • Loading branch information
dbackeus committed Aug 18, 2020
1 parent d550448 commit a0298d3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
2.2.3
2.6.5
18 changes: 9 additions & 9 deletions Gemfile.lock
Expand Up @@ -2,22 +2,22 @@ PATH
remote: .
specs:
audience-api (0.1.3)
faraday (~> 0.8)
faraday_middleware (~> 0.8)
faraday (~> 1.0)
faraday_middleware (~> 1.0)
hashie
multi_json (~> 1.0)

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
faraday (0.9.2)
faraday (1.0.1)
multipart-post (>= 1.2, < 3)
faraday_middleware (0.10.0)
faraday (>= 0.7.4, < 0.10)
hashie (3.4.3)
multi_json (1.11.2)
multipart-post (2.0.0)
faraday_middleware (1.0.0)
faraday (~> 1.0)
hashie (4.1.0)
multi_json (1.15.0)
multipart-post (2.1.1)
rake (10.4.2)
rspec (3.4.0)
rspec-core (~> 3.4.0)
Expand All @@ -43,4 +43,4 @@ DEPENDENCIES
rspec (~> 3.0)

BUNDLED WITH
1.10.6
1.17.2
4 changes: 2 additions & 2 deletions audience-api.gemspec
Expand Up @@ -29,8 +29,8 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_runtime_dependency "faraday", "~> 0.8"
spec.add_runtime_dependency "faraday_middleware", "~> 0.8"
spec.add_runtime_dependency "faraday", "~> 1.0"
spec.add_runtime_dependency "faraday_middleware", "~> 1.0"
spec.add_runtime_dependency "multi_json", "~> 1.0"
spec.add_runtime_dependency "hashie"
end
2 changes: 1 addition & 1 deletion lib/audience/api/configuration.rb
Expand Up @@ -26,7 +26,7 @@ module Configuration
# The endpoint that will be used to connect if none is set
#
# @note There is no reason to use any other endpoint at this time
DEFAULT_ENDPOINT = "http://mnd-audience.herokuapp.com".freeze
DEFAULT_ENDPOINT = "https://mnd-audience.herokuapp.com".freeze

# @private
attr_accessor *VALID_OPTIONS_KEYS
Expand Down
2 changes: 1 addition & 1 deletion lib/audience/api/version.rb
@@ -1,5 +1,5 @@
module Audience
module Api
VERSION = "0.1.3"
VERSION = "1.0.0"
end
end

0 comments on commit a0298d3

Please sign in to comment.