Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phacks committed Feb 23, 2023
1 parent 78c95f1 commit d5b208e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 1.1.0 (2023-02-23)

#### Breaking changes

- Remove support for ruby 2.5
- Remove the `activesupport` dependency. Add `gem 'activesupport'` to your Gemfile if you required ActiveSupport via this library.

#### Other

- Upgrade Faraday to v2 (thanks @Tao-Galasse!)

### 1.0.0 (2022-03-30)

#### New
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PATH
remote: .
specs:
notion-ruby-client (1.0.0)
notion-ruby-client (1.1.0)
dotenv
faraday (>= 1.0)
faraday (>= 2.0)
faraday-mashify (>= 0.1.1)
faraday-multipart (>= 1.0.4)
hashie (~> 5)
Expand All @@ -17,7 +17,7 @@ GEM
crack (0.4.5)
rexml
diff-lcs (1.4.4)
dotenv (2.7.6)
dotenv (2.8.1)
faraday (2.7.4)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
Expand Down
2 changes: 1 addition & 1 deletion lib/notion/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Notion
VERSION = '1.0.0'
VERSION = '1.1.0'
NOTION_REQUEST_VERSION = '2022-02-22'
end
2 changes: 1 addition & 1 deletion notion-ruby-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.licenses = ['MIT']
s.summary = 'Notion API client for Ruby.'
s.add_dependency 'dotenv'
s.add_dependency 'faraday', '>= 1.0'
s.add_dependency 'faraday', '>= 2.0'
s.add_dependency 'faraday-mashify', '>= 0.1.1'
s.add_dependency 'faraday-multipart', '>= 1.0.4'
s.add_dependency 'hashie', '~> 5'
Expand Down

0 comments on commit d5b208e

Please sign in to comment.