From 3fcc89bbeae994f3aa1708d5ea30080b789cdea4 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Tue, 28 Dec 2021 00:52:13 +0000 Subject: [PATCH] 0.0.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- zotero2md/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ee61d..b2bb088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,10 @@ + +## v0.0.1 (2021-12-28) +### Fix +* Uploading to PyPI. Enable upload_to_release. Add placeholder in the CHANGELOG. ([`4aa77d8`](https://github.com/e-alizadeh/Zotero2MD/commit/4aa77d882aabfd3ce60ff59d5d8d31cfa8705247)) +* Pass PYPI_TOKEN as an env variable to the package building step. ([`63c9e4d`](https://github.com/e-alizadeh/Zotero2MD/commit/63c9e4ddba5682711cfca2dc8099b63e6cb145d6)) +* Ci publish and semantic versioning ([`bc4e2c2`](https://github.com/e-alizadeh/Zotero2MD/commit/bc4e2c2eccd9b61fabbe533327774db240156f0c)) +* Workflow automation ([`7e7ca60`](https://github.com/e-alizadeh/Zotero2MD/commit/7e7ca6044645fb8be310a5564161ad9960f590f0)) diff --git a/pyproject.toml b/pyproject.toml index 698eba2..5e2465b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zotero2md" -version = "0.0.0" +version = "0.0.1" description = "Export Zotero annotations and notes to Markdown files." readme = "README.md" authors = ["ealizadeh "] diff --git a/zotero2md/__init__.py b/zotero2md/__init__.py index a49d4c7..879ef60 100644 --- a/zotero2md/__init__.py +++ b/zotero2md/__init__.py @@ -3,7 +3,7 @@ from pyzotero.zotero import Zotero -__version__ = "0.0.0" +__version__ = "0.0.1" ROOT_DIR: Path = Path(__file__).parent TOP_DIR: Path = ROOT_DIR.parent