Skip to content

Commit d5b208e

Browse files
committed
Release v1.1.0
1 parent 78c95f1 commit d5b208e

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
### 1.0.0 (2022-03-30)
213

314
#### New

Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
notion-ruby-client (1.0.0)
4+
notion-ruby-client (1.1.0)
55
dotenv
6-
faraday (>= 1.0)
6+
faraday (>= 2.0)
77
faraday-mashify (>= 0.1.1)
88
faraday-multipart (>= 1.0.4)
99
hashie (~> 5)
@@ -17,7 +17,7 @@ GEM
1717
crack (0.4.5)
1818
rexml
1919
diff-lcs (1.4.4)
20-
dotenv (2.7.6)
20+
dotenv (2.8.1)
2121
faraday (2.7.4)
2222
faraday-net_http (>= 2.0, < 3.1)
2323
ruby2_keywords (>= 0.0.4)

lib/notion/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22
module Notion
3-
VERSION = '1.0.0'
3+
VERSION = '1.1.0'
44
NOTION_REQUEST_VERSION = '2022-02-22'
55
end

notion-ruby-client.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616
s.licenses = ['MIT']
1717
s.summary = 'Notion API client for Ruby.'
1818
s.add_dependency 'dotenv'
19-
s.add_dependency 'faraday', '>= 1.0'
19+
s.add_dependency 'faraday', '>= 2.0'
2020
s.add_dependency 'faraday-mashify', '>= 0.1.1'
2121
s.add_dependency 'faraday-multipart', '>= 1.0.4'
2222
s.add_dependency 'hashie', '~> 5'

0 commit comments

Comments
 (0)