Skip to content

Commit

Permalink
bump: version 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Aug 21, 2022
1 parent b0219b5 commit 8a3a777
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .cz.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
version = "0.1.1"
tag_format = "v$version"
update_changelog_on_bump = true
version_files = [
"src/__init__.py",
"README.rst:github",
"docs/conf.py:version = release",
"pyproject.toml:version =",
"README.rst:github",
"src/logseq_doctor/__init__.py",
]
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## v0.1.1 (2022-08-21)

### Fix

- ImportError on lsd --help

## v0.1.0 (2022-03-26)

### Feat

- convert headers and flat paragraphs to an outline
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.1.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.1.1.svg
:alt: Commits since latest release
:target: https://github.com/andreoliwa/logseq-doctor/compare/v0.1.0...master
:target: https://github.com/andreoliwa/logseq-doctor/compare/v0.1.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 @@ -20,7 +20,7 @@
year = '2022'
author = 'W Augusto Andreoli'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.0'
version = release = '0.1.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 @@ -5,7 +5,7 @@ skip-string-normalization = true

[tool.poetry]
name = "logseq-doctor"
version = "0.1.0"
version = "0.1.1"
description = "Logseq Doctor: heal your flat old Markdown files before importing them"
authors = ["W. Augusto Andreoli <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/logseq_doctor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from mistletoe import span_token
from mistletoe.base_renderer import BaseRenderer

__version__ = '0.1.0'
__version__ = '0.1.1'


class LogseqRenderer(BaseRenderer):
Expand Down

0 comments on commit 8a3a777

Please sign in to comment.