Skip to content

Commit

Permalink
HOTFIX : Fix wrong path for new features
Browse files Browse the repository at this point in the history
  • Loading branch information
minwook-shin committed Apr 21, 2023
1 parent 711be58 commit 040e7fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## 2022-06-28.8 (2023-04-22)

### Bug Fixes

* HOTFIX : Fix wrong path for new Cover and Icon features

## 2022-06-28.7 (2023-04-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="notion-database",
version=NOTION_VERSION.replace("-", "") + ".7",
version=NOTION_VERSION.replace("-", "") + ".8",
author="minwook-shin",
author_email="minwook0106@gmail.com",
description=" Notion API Database Python Implementation",
Expand Down
4 changes: 2 additions & 2 deletions src/notion_database/database.py
Expand Up @@ -3,8 +3,8 @@
from notion_database.properties import Properties
from notion_database.request import Request

from src.notion_database.cover import Cover
from src.notion_database.icon import Icon
from notion_database.cover import Cover
from notion_database.icon import Icon


class Database:
Expand Down
4 changes: 2 additions & 2 deletions src/notion_database/page.py
Expand Up @@ -4,8 +4,8 @@
from notion_database.properties import Properties
from notion_database.request import Request

from src.notion_database.cover import Cover
from src.notion_database.icon import Icon
from notion_database.cover import Cover
from notion_database.icon import Icon

LOGGER = logging.getLogger("Notion-Database")

Expand Down

0 comments on commit 040e7fc

Please sign in to comment.