diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d1e4f66..8fc4730 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -46,6 +46,13 @@ jobs: uses: python-semantic-release/python-semantic-release@v8.3.0 with: github_token: ${{ secrets.GH_TOKEN }} + + - name: Debug Semantic Release Output + if: always() + run: | + echo "Released: ${{ steps.release.outputs.released }}" + echo "New version: ${{ steps.release.outputs.new_version }}" + echo "Version change: ${{ steps.release.outputs.version_change }}" - name: Build distributions with Poetry run: poetry build diff --git a/pyproject.toml b/pyproject.toml index 569b34a..cd009f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zotero2readwise" -version = "0.2.7" +version = "0.3.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 f4a4f2a..91f37ba 100644 --- a/zotero2readwise/__init__.py +++ b/zotero2readwise/__init__.py @@ -1,7 +1,7 @@ from pathlib import Path __author__ = "Essi Alizadeh" -__version__ = "0.2.7" +__version__ = "0.3.0" TOP_DIR = Path(__file__).parent FAILED_ITEMS_DIR = TOP_DIR