Skip to content

Commit

Permalink
feat: switch to Faraday 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrytrager committed Jan 13, 2025
1 parent 7731456 commit 10731b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
strategy:
matrix:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.0

* Add `token_info` [method](https://business-api.tiktok.com/portal/docs?id=1765927978092545) to validate TikTok profiles
* Add `token_info` [method](https://business-api.tiktok.com/portal/docs?id=1765927978092545) to validate TikTok profiles

## 0.6.0

* Switch to Faraday 2 [changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md) to support other updates
2 changes: 1 addition & 1 deletion lib/panda/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Panda
VERSION = '0.5.0'
VERSION = '0.6.0'
end
2 changes: 1 addition & 1 deletion panda.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
s.require_paths = ['lib']

s.add_runtime_dependency 'faraday', '~> 1.0'
s.add_runtime_dependency 'faraday', '~> 2.12.2'
end

0 comments on commit 10731b7

Please sign in to comment.