diff --git a/CHANGELOG.md b/CHANGELOG.md index f41e1bf..a4b2fcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.2.3 (2022-01-07) +### Fix +* Use alternate link Zotero (`https://www.zotero.org/username/items/`) that has a html content instead of self link (`https://api.zotero.org/users//items/`) that contains a JSON content and calls the API. ([`3310ad1`](https://github.com/e-alizadeh/Zotero2Readwise/commit/3310ad130afdcc977a8eb771712950d0d70064d1)) + ## v0.2.2 (2022-01-03) ### Fix * An oversight in `Zotero2Readwise` class method `run()` (previously `run_all())` ([`e2b1336`](https://github.com/e-alizadeh/Zotero2Readwise/commit/e2b133634372b44cefc728923ae7ef384c69adda)) diff --git a/pyproject.toml b/pyproject.toml index 14dd2ee..f18c953 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zotero2readwise" -version = "0.2.2" +version = "0.2.3" description = "Export your Zotero annotations and notes to Readwise" readme = "README.md" authors = ["ealizadeh "] diff --git a/zotero2readwise/__init__.py b/zotero2readwise/__init__.py index 9f649af..46946e5 100644 --- a/zotero2readwise/__init__.py +++ b/zotero2readwise/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path __author__ = "Essi Alizadeh" -__version__ = "0.2.2" +__version__ = "0.2.3" FAILED_ITEMS_DIR = Path("failed_items")