Skip to content

Commit

Permalink
Merge pull request #54 from koshilife/#53-specify-dependencies
Browse files Browse the repository at this point in the history
specify dependencies (oauth2 is 1.x series, faraday is 1.x or 2.x series)
  • Loading branch information
koshilife committed Jun 29, 2022
2 parents 817a198 + 67a0a24 commit 9f4273c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.11.1 - 2022-06-29

- specified dependencies:
- oauth2: 1.x series (refs #53)
- faraday: 1.x or 2.x seriese (refs #51)

## 0.11.0 - 2022-05-02

- supported a API `POST /scheduled_events/{uuid}/cancellation`. (#48)
Expand Down
3 changes: 2 additions & 1 deletion calendly.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_runtime_dependency 'oauth2', '>= 1.4.4'
spec.add_runtime_dependency 'oauth2', '~> 1.4', '>= 1.4.4'
spec.add_runtime_dependency 'faraday', '>= 1.0.0', '< 3.0.0'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'codecov'
Expand Down
2 changes: 1 addition & 1 deletion lib/calendly/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Calendly
VERSION = '0.11.0'
VERSION = '0.11.1'
end

0 comments on commit 9f4273c

Please sign in to comment.