Skip to content

Commit

Permalink
0.4.2
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Nov 16, 2023
1 parent c5b7c59 commit 1d7d705
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@



## v0.4.2 (2023-11-16)

### Fix

* fix: add `len` ([`59d3fad`](https://github.com/e-alizadeh/Zotero2Readwise/commit/59d3fadfe6a730deb86f76df486fcf54d3138aab))

* fix: check of max_length first

Only truncate if needed. Make code more readable. ([`5d69300`](https://github.com/e-alizadeh/Zotero2Readwise/commit/5d693001a84413510c451a6e0f6841197f0dd64b))

### Unknown

* Merge pull request #60 from noeleont/fix/author_names

fix: creator/author field

Thanks @noeleont for the contribution. ([`c5b7c59`](https://github.com/e-alizadeh/Zotero2Readwise/commit/c5b7c5940d7672fbb4b384917fe022635e30e88e))

* Merge branch 'e-alizadeh:master' into fix/author_names ([`603cdb4`](https://github.com/e-alizadeh/Zotero2Readwise/commit/603cdb4e856969e44b5cdec2f82616fac9f55e01))


## v0.4.1 (2023-11-08)

### Fix
Expand All @@ -17,6 +38,14 @@ fix(pyproject): version bump config ([`04f1083`](https://github.com/e-alizadeh/Z

## v0.4.0 (2023-11-08)

### Fix

* fix: enusuring backward compatibility

To prevent the occurrence of duplicate entries in Readwise, we will
amend the authors' names to 'et al.' exclusively in instances where
their works have not been previously imported. ([`0d5197c`](https://github.com/e-alizadeh/Zotero2Readwise/commit/0d5197ce1f648945bdfebf109d98f4c350f8166b))

### Unknown

* Merge pull request #59 from noeleont/master
Expand Down Expand Up @@ -98,6 +127,10 @@ since the last sync, ideal for large collections. ([`42b3449`](https://github.co

* fix(gha): update the workflow for package release ([`b6cbda7`](https://github.com/e-alizadeh/Zotero2Readwise/commit/b6cbda71e79d4a75fcd507611e9507c01327962b))

* fix: creator/author field

If there are more than three authors, replace the rest with "et al." ([`3053550`](https://github.com/e-alizadeh/Zotero2Readwise/commit/305355066773e2009f2c865cc53fee56d2dd9211))

### Refactor

* refactor: change if condition in the GHA. ([`ff27c6f`](https://github.com/e-alizadeh/Zotero2Readwise/commit/ff27c6fb0760025a97434e7f16d808ef32f8798e))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zotero2readwise"
version = "0.4.1"
version = "0.4.2"
description = "Export your Zotero annotations and notes to Readwise"
readme = "README.md"
authors = ["ealizadeh <hello@ealizadeh.com>"]
Expand Down
2 changes: 1 addition & 1 deletion zotero2readwise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path

__author__ = "Essi Alizadeh"
__version__ = "0.4.1"
__version__ = "0.4.2"

TOP_DIR = Path(__file__).parent
FAILED_ITEMS_DIR = TOP_DIR

0 comments on commit 1d7d705

Please sign in to comment.