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 89b6c77
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 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
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: disable
SuggestExtensions: false

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 Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gemspec

group :development do
gem 'rake'
gem 'rubocop', '1.20'
gem 'rubocop', '1.65'
end

group :test do
Expand Down
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
4 changes: 2 additions & 2 deletions panda.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require 'panda/version'
Gem::Specification.new do |s|
s.name = 'panda-tiktok'
s.version = Panda::VERSION
s.required_ruby_version = '>= 2.7.0'
s.required_ruby_version = '>= 3.0.0'
s.summary = 'Ruby client for TikTok Marketing API'
s.author = 'Revealbot'
s.email = '[email protected]'
Expand All @@ -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 89b6c77

Please sign in to comment.