-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: latest correct version. add debugging printouts
- Loading branch information
Essi
committed
Nov 7, 2023
1 parent
8ebb3c8
commit 9089fe1
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |