Skip to content

Commit

Permalink
bump: version 0.2.0 → 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Feb 4, 2024
1 parent c0393f6 commit baaa48c
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pre_bump_hooks = [
]
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.2.0"
version = "0.2.1"
version_files = [
"docs/conf.py:version = release",
"pyproject.toml:version =",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.2.1 (2024-02-04)

### Fix

- automated release with "make release" from local computer

## v0.2.0 (2024-02-04)

### Feat
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.2.1.svg
:alt: Commits since latest release
:target: https://github.com/andreoliwa/logseq-doctor/compare/v0.2.0...master
:target: https://github.com/andreoliwa/logseq-doctor/compare/v0.2.1...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
year = "2022"
author = "W Augusto Andreoli"
copyright = f"{year}, {author}"
version = release = "0.2.0"
version = release = "0.2.1"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ name = "logseq-doctor"
readme = "README.rst"
repository = "https://github.com/andreoliwa/logseq-doctor"
requires-python = ">=3.9"
version = "0.2.0"
version = "0.2.1"

[[project.authors]]
email = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion python/logseq_doctor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from mistletoe import block_token, span_token, token
from mistletoe.base_renderer import BaseRenderer

__version__ = "0.2.0"
__version__ = "0.2.1"

DASH = "-"

Expand Down
2 changes: 1 addition & 1 deletion rust/logseq-doctor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,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.0"
version = "0.2.1"
2 changes: 1 addition & 1 deletion rust/logseq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ license = "MIT OR Apache-2.0"
name = "logseq"
readme = "README.md"
repository = "https://github.com/andreoliwa/logseq-doctor"
version = "0.2.0"
version = "0.2.1"

0 comments on commit baaa48c

Please sign in to comment.