File tree 4 files changed +16
-5
lines changed
4 files changed +16
-5
lines changed Original file line number Diff line number Diff line change
1
+ ### 1.1.0 (2023-02-23)
2
+
3
+ #### Breaking changes
4
+
5
+ - Remove support for ruby 2.5
6
+ - Remove the ` activesupport ` dependency. Add ` gem 'activesupport' ` to your Gemfile if you required ActiveSupport via this library.
7
+
8
+ #### Other
9
+
10
+ - Upgrade Faraday to v2 (thanks @Tao-Galasse !)
11
+
1
12
### 1.0.0 (2022-03-30)
2
13
3
14
#### New
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- notion-ruby-client (1.0 .0 )
4
+ notion-ruby-client (1.1 .0 )
5
5
dotenv
6
- faraday (>= 1 .0 )
6
+ faraday (>= 2 .0 )
7
7
faraday-mashify (>= 0.1.1 )
8
8
faraday-multipart (>= 1.0.4 )
9
9
hashie (~> 5 )
17
17
crack (0.4.5 )
18
18
rexml
19
19
diff-lcs (1.4.4 )
20
- dotenv (2.7.6 )
20
+ dotenv (2.8.1 )
21
21
faraday (2.7.4 )
22
22
faraday-net_http (>= 2.0 , < 3.1 )
23
23
ruby2_keywords (>= 0.0.4 )
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
module Notion
3
- VERSION = '1.0 .0'
3
+ VERSION = '1.1 .0'
4
4
NOTION_REQUEST_VERSION = '2022-02-22'
5
5
end
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
s . licenses = [ 'MIT' ]
17
17
s . summary = 'Notion API client for Ruby.'
18
18
s . add_dependency 'dotenv'
19
- s . add_dependency 'faraday' , '>= 1 .0'
19
+ s . add_dependency 'faraday' , '>= 2 .0'
20
20
s . add_dependency 'faraday-mashify' , '>= 0.1.1'
21
21
s . add_dependency 'faraday-multipart' , '>= 1.0.4'
22
22
s . add_dependency 'hashie' , '~> 5'
You can’t perform that action at this time.
0 commit comments