Skip to content

Commit

Permalink
fix: latest correct version. add debugging printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
Essi committed Nov 7, 2023
1 parent 8ebb3c8 commit 9089fe1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
uses: python-semantic-release/[email protected]
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
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.2.7"
version = "0.3.0"
description = "Export your Zotero annotations and notes to Readwise"
readme = "README.md"
authors = ["ealizadeh <[email protected]>"]
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.2.7"
__version__ = "0.3.0"

TOP_DIR = Path(__file__).parent
FAILED_ITEMS_DIR = TOP_DIR

0 comments on commit 9089fe1

Please sign in to comment.