From 76584ccff2cb7ebf2ac0ca7e62d4465c34b476de Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 1 Jan 2022 21:45:22 +0000 Subject: [PATCH] 0.2.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- zotero2readwise/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae6a228..c7b8a73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## 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)) + +### Fix +* Remove filtering zotero items upto 5 items. ([`4f3e5e0`](https://github.com/e-alizadeh/Zotero2Readwise/commit/4f3e5e097ec9f6b99e709c1b3be306802a672023)) + ## v0.1.1 (2022-01-01) ### Fix * Project details ([`502806c`](https://github.com/e-alizadeh/Zotero2Readwise/commit/502806cceb8f03a8bc2ae2d3f6d79a202d7e9452)) diff --git a/pyproject.toml b/pyproject.toml index bceb296..7506a8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zotero2readwise" -version = "0.1.1" +version = "0.2.0" 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 1fa4b4c..2c2f17d 100644 --- a/zotero2readwise/__init__.py +++ b/zotero2readwise/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path __author__ = "Essi Alizadeh" -__version__ = "0.1.1" +__version__ = "0.2.0" FAILED_ITEMS_DIR = Path("failed_items")