From e5fc21c0d4fbb3b26ae5e18700c94b89342bbb14 Mon Sep 17 00:00:00 2001 From: "W. Augusto Andreoli" Date: Wed, 7 Feb 2024 23:52:39 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.2.1=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.toml | 2 +- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 4 ++-- README.rst | 4 ++-- docs/conf.py | 2 +- pyproject.toml | 2 +- python/logseq_doctor/__init__.py | 2 +- rust/logseq-doctor/Cargo.toml | 2 +- rust/logseq/Cargo.toml | 2 +- 9 files changed, 21 insertions(+), 10 deletions(-) diff --git a/.cz.toml b/.cz.toml index b847fb1..f879e8a 100644 --- a/.cz.toml +++ b/.cz.toml @@ -13,7 +13,7 @@ pre_bump_hooks = [ ] tag_format = "v$version" update_changelog_on_bump = true -version = "0.2.1" +version = "0.3.0" version_files = [ "docs/conf.py:version = release", "pyproject.toml:version =", diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee4989..c11593f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.3.0 (2024-02-07) + +### Feat + +- **journal**: option to prepend content +- **journal**: choose the date (with natural language) +- **journal**: output content to stdout +- **journal**: option to convert to outline (#17) +- **journal**: pipe content from stdin (#17) +- **journal**: append content to the current journal page (#17) + ## v0.2.1 (2024-02-04) ### Fix diff --git a/Cargo.lock b/Cargo.lock index 4517080..fdc10ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "logseq" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "assert_fs", @@ -299,7 +299,7 @@ dependencies = [ [[package]] name = "logseq-doctor" -version = "0.2.1" +version = "0.3.0" dependencies = [ "chrono", "logseq", diff --git a/README.rst b/README.rst index a997ebd..616309d 100644 --- a/README.rst +++ b/README.rst @@ -43,9 +43,9 @@ Overview :alt: Supported implementations :target: https://pypi.org/project/logseq-doctor -.. |commits-since| image:: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.2.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.3.0.svg :alt: Commits since latest release - :target: https://github.com/andreoliwa/logseq-doctor/compare/v0.2.1...master + :target: https://github.com/andreoliwa/logseq-doctor/compare/v0.3.0...master diff --git a/docs/conf.py b/docs/conf.py index 33fa8ff..a5d8548 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ year = "2022" author = "W Augusto Andreoli" copyright = f"{year}, {author}" -version = release = "0.2.1" +version = release = "0.3.0" pygments_style = "trac" templates_path = ["."] diff --git a/pyproject.toml b/pyproject.toml index ba77fda..de4c83d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ name = "logseq-doctor" readme = "README.rst" repository = "https://github.com/andreoliwa/logseq-doctor" requires-python = ">=3.9" -version = "0.2.1" +version = "0.3.0" [[project.authors]] email = "andreoliwa@gmail.com" diff --git a/python/logseq_doctor/__init__.py b/python/logseq_doctor/__init__.py index b61a1ae..8a9675d 100644 --- a/python/logseq_doctor/__init__.py +++ b/python/logseq_doctor/__init__.py @@ -10,7 +10,7 @@ from logseq_doctor.constants import CHAR_DASH -__version__ = "0.2.1" +__version__ = "0.3.0" class LogseqRenderer(BaseRenderer): diff --git a/rust/logseq-doctor/Cargo.toml b/rust/logseq-doctor/Cargo.toml index d5195c3..0ab2c6f 100644 --- a/rust/logseq-doctor/Cargo.toml +++ b/rust/logseq-doctor/Cargo.toml @@ -21,4 +21,4 @@ categories = ["command-line-utilities", "filesystem", "text-editors", "text-proc description = "Logseq Doctor: heal your Markdown files" edition = "2021" name = "logseq-doctor" -version = "0.2.1" +version = "0.3.0" diff --git a/rust/logseq/Cargo.toml b/rust/logseq/Cargo.toml index a57ab2a..1f5fdfb 100644 --- a/rust/logseq/Cargo.toml +++ b/rust/logseq/Cargo.toml @@ -24,4 +24,4 @@ license = "MIT OR Apache-2.0" name = "logseq" readme = "README.md" repository = "https://github.com/andreoliwa/logseq-doctor" -version = "0.2.1" +version = "0.3.0"