diff --git a/CHANGELOG.md b/CHANGELOG.md index c7b8a73..28d0a99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.2.1 (2022-01-03) +### Fix +* Get non-empty objects from ZoteroItem (so that we have a JSON serializable object) ([`6b79fc9`](https://github.com/e-alizadeh/Zotero2Readwise/commit/6b79fc9bf457acd78287a8f0cbe1800f335e52fc)) +* Ignore highlights more than 8191 characters (readwise limit for a highlight.) ([`7503324`](https://github.com/e-alizadeh/Zotero2Readwise/commit/7503324150d50db72abd3c3cbfda8b469a7d596d)) + +### Documentation +* Improve printouts for both Zotero and Readwise operations ([`5a22717`](https://github.com/e-alizadeh/Zotero2Readwise/commit/5a22717987a509c123b233dfd33aeded1a9902cd)) +* Define Zotero2ReadwiseError exception object. ([`7d5022a`](https://github.com/e-alizadeh/Zotero2Readwise/commit/7d5022a0ebc28e170e07dc004042981b2be7e314)) + ## v0.2.0 (2022-01-01) ### Feature * Refactor `Zotero2Readwise.run()` to pass a custom number of Zotero annotations and notes instead of running all. ([`7c8a337`](https://github.com/e-alizadeh/Zotero2Readwise/commit/7c8a3372b642e3056c5279dcfa06470eb6981f34)) diff --git a/pyproject.toml b/pyproject.toml index 7506a8d..e3cb7d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zotero2readwise" -version = "0.2.0" +version = "0.2.1" 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 2c2f17d..f2dc245 100644 --- a/zotero2readwise/__init__.py +++ b/zotero2readwise/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path __author__ = "Essi Alizadeh" -__version__ = "0.2.0" +__version__ = "0.2.1" FAILED_ITEMS_DIR = Path("failed_items")