Skip to content

Commit 5038099

Browse files
authored
Merge pull request #26 from orbit-love/release-1.0.0-beta1
Release 1.0.0_beta1
2 parents 59f2602 + af5efe1 commit 5038099

File tree

4 files changed

+40
-17
lines changed

4 files changed

+40
-17
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 1.0.0-beta1 (2022-03-24)
2+
3+
#### New
4+
5+
- Add support for the following new endpoints:
6+
- [Delete a block](https://developers.notion.com/reference/get-block-children)
7+
- [Retrieve your token's bot user](https://developers.notion.com/reference/get-self)
8+
- [Retrieve a page property item](https://developers.notion.com/reference/retrieve-a-page-property)
9+
- Update Notion API Version to `2022-02-22` (thanks @hkob!)
10+
- Remove the following deprecated endpoint:
11+
- [List databases](https://developers.notion.com/reference/get-databases)
12+
- Add Codespaces and CONTRIBUTING.md command for better DX
13+
- Overhauled documentation
14+
15+
#### Upgrade instructions
16+
17+
- Please refer to the Notion Changelog to see breaking changes for version `2022-02-22`: https://developers.notion.com/changelog/releasing-notion-version-2022-02-22
18+
119
### 0.1.0-beta1 (2021-08-29)
220

321
#### New

Gemfile.lock

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
PATH
22
remote: .
33
specs:
4-
notion-ruby-client (0.1.0.pre.beta1)
5-
activesupport
4+
notion-ruby-client (1.0.0.pre.beta1)
5+
activesupport (~> 6)
66
dotenv
77
faraday (>= 1.0)
88
faraday_middleware
9-
hashie
9+
hashie (~> 5)
1010

1111
GEM
1212
remote: http://rubygems.org/
1313
specs:
14-
activesupport (6.1.4.1)
14+
activesupport (6.1.5)
1515
concurrent-ruby (~> 1.0, >= 1.0.2)
1616
i18n (>= 1.6, < 2)
1717
minitest (>= 5.1)
@@ -20,38 +20,42 @@ GEM
2020
addressable (2.8.0)
2121
public_suffix (>= 2.0.2, < 5.0)
2222
ast (2.4.2)
23-
concurrent-ruby (1.1.9)
23+
concurrent-ruby (1.1.10)
2424
crack (0.4.5)
2525
rexml
2626
diff-lcs (1.4.4)
2727
dotenv (2.7.6)
28-
faraday (1.7.0)
28+
faraday (1.10.0)
2929
faraday-em_http (~> 1.0)
3030
faraday-em_synchrony (~> 1.0)
3131
faraday-excon (~> 1.1)
32-
faraday-httpclient (~> 1.0.1)
32+
faraday-httpclient (~> 1.0)
33+
faraday-multipart (~> 1.0)
3334
faraday-net_http (~> 1.0)
34-
faraday-net_http_persistent (~> 1.1)
35+
faraday-net_http_persistent (~> 1.0)
3536
faraday-patron (~> 1.0)
3637
faraday-rack (~> 1.0)
37-
multipart-post (>= 1.2, < 3)
38+
faraday-retry (~> 1.0)
3839
ruby2_keywords (>= 0.0.4)
3940
faraday-em_http (1.0.0)
4041
faraday-em_synchrony (1.0.0)
4142
faraday-excon (1.1.0)
4243
faraday-httpclient (1.0.1)
44+
faraday-multipart (1.0.3)
45+
multipart-post (>= 1.2, < 3)
4346
faraday-net_http (1.0.1)
4447
faraday-net_http_persistent (1.2.0)
4548
faraday-patron (1.0.0)
4649
faraday-rack (1.0.0)
47-
faraday_middleware (1.1.0)
50+
faraday-retry (1.0.3)
51+
faraday_middleware (1.2.0)
4852
faraday (~> 1.0)
4953
hashdiff (1.0.1)
50-
hashie (4.1.0)
51-
i18n (1.8.10)
54+
hashie (5.0.0)
55+
i18n (1.10.0)
5256
concurrent-ruby (~> 1.0)
5357
jaro_winkler (1.5.4)
54-
minitest (5.14.4)
58+
minitest (5.15.0)
5559
multipart-post (2.1.1)
5660
parallel (1.20.1)
5761
parser (3.0.1.1)
@@ -96,10 +100,11 @@ GEM
96100
addressable (>= 2.3.6)
97101
crack (>= 0.3.2)
98102
hashdiff (>= 0.4.0, < 2.0.0)
99-
zeitwerk (2.4.2)
103+
zeitwerk (2.5.4)
100104

101105
PLATFORMS
102106
arm64-darwin-20
107+
ruby
103108
x86_64-linux
104109

105110
DEPENDENCIES

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 = '0.1.0-beta1'
3+
VERSION = '1.0.0-beta1'
44
NOTION_REQUEST_VERSION = '2022-02-22'
55
end

notion-ruby-client.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Gem::Specification.new do |s|
1515
s.homepage = 'http://github.com/orbit-love/notion-ruby-client'
1616
s.licenses = ['MIT']
1717
s.summary = 'Notion API client for Ruby.'
18-
s.add_dependency 'activesupport'
18+
s.add_dependency 'activesupport', '~> 6'
1919
s.add_dependency 'dotenv'
2020
s.add_dependency 'faraday', '>= 1.0'
2121
s.add_dependency 'faraday_middleware'
22-
s.add_dependency 'hashie'
22+
s.add_dependency 'hashie', '~> 5'
2323
s.add_development_dependency 'rake', '~> 13'
2424
s.add_development_dependency 'rspec'
2525
s.add_development_dependency 'rubocop', '~> 0.82.0'

0 commit comments

Comments
 (0)