From 43047aba8dbf6cf71bc82d31b7c8b47331a6019e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 10 Jan 2024 11:15:43 +0000 Subject: [PATCH] chore(release): 2.9.0 [skip ci] ## [2.9.0](https://github.com/echo724/notion2md/compare/v2.8.4...v2.9.0) (2024-01-10) ### Features * add notion token parameter to `Exporter` ([#60](https://github.com/echo724/notion2md/issues/60)) ([a93cf51](https://github.com/echo724/notion2md/commit/a93cf515bc0793e936d8b080475e459b98ede5fd)) ### Bug Fixes * fix encoded filename is too long case ([#59](https://github.com/echo724/notion2md/issues/59)) ([073994a](https://github.com/echo724/notion2md/commit/073994a32246dbd2bf957040fe9a454b52961a8e)) --- CHANGELOG.md | 12 ++++++++++++ notion2md/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb726a..4f77d57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.9.0](https://github.com/echo724/notion2md/compare/v2.8.4...v2.9.0) (2024-01-10) + + +### Features + +* add notion token parameter to `Exporter` ([#60](https://github.com/echo724/notion2md/issues/60)) ([a93cf51](https://github.com/echo724/notion2md/commit/a93cf515bc0793e936d8b080475e459b98ede5fd)) + + +### Bug Fixes + +* fix encoded filename is too long case ([#59](https://github.com/echo724/notion2md/issues/59)) ([073994a](https://github.com/echo724/notion2md/commit/073994a32246dbd2bf957040fe9a454b52961a8e)) + ## [2.8.4](https://github.com/echo724/notion2md/compare/v2.8.3...v2.8.4) (2023-12-28) diff --git a/notion2md/__init__.py b/notion2md/__init__.py index e897069..43ce13d 100644 --- a/notion2md/__init__.py +++ b/notion2md/__init__.py @@ -1 +1 @@ -__version__ = "2.8.4" +__version__ = "2.9.0" diff --git a/pyproject.toml b/pyproject.toml index 4c7565f..f5779a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "notion2md" -version = "2.8.4" +version = "2.9.0" description = "Notion Markdown Exporter with Python Cli" license = "MIT" classifiers = ["License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.9"]