Skip to content

Commit 7a79d62

Browse files
committed
Release v1.0.0
1 parent 8edcab7 commit 7a79d62

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 1.0.0 (2022-03-30)
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
### 1.0.0-beta2 (2022-03-24)
220

321
#### Fixed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
notion-ruby-client (1.0.0.pre.beta2)
4+
notion-ruby-client (1.0.0)
55
activesupport (>= 6)
66
dotenv
77
faraday (>= 1.0)

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

0 commit comments

Comments
 (0)