Skip to content

Commit

Permalink
faraday: drop < 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sirupsen committed Apr 24, 2022
1 parent eac78f3 commit 3c5cab4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 1.0.10

* No longer compatible with Faraday < 1

# 1.0.9

* Faraday 2 compatibility round 2 (#90)
Expand Down
2 changes: 1 addition & 1 deletion airrecord.gemspec
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2"

spec.add_dependency "faraday", [">= 0.10", "< 3.0"]
spec.add_dependency "faraday", [">= 1.0", "< 3.0"]
spec.add_dependency "net-http-persistent"
spec.add_dependency "faraday-net_http_persistent"

Expand Down
4 changes: 3 additions & 1 deletion bin/production-test.rb
@@ -1,9 +1,11 @@
require 'airrecord'

p Faraday::VERSION

Tea = Airrecord.table(
ENV["AIRTABLE_TOKEN"],
"appZJC9q8TBYPDF7j",
"Teas"
)

p Tea.all
# p Tea.all
2 changes: 1 addition & 1 deletion lib/airrecord/version.rb
@@ -1,3 +1,3 @@
module Airrecord
VERSION = "1.0.9"
VERSION = "1.0.10"
end

0 comments on commit 3c5cab4

Please sign in to comment.