File tree Expand file tree Collapse file tree 6 files changed +21
-8
lines changed
Expand file tree Collapse file tree 6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 11[tool .commitizen ]
22name = " cz_conventional_commits"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44tag_format = " v$version"
5+ update_changelog_on_bump = true
56version_files = [
6- " src/__init__.py" ,
7- " README.rst:github" ,
87 " docs/conf.py:version = release" ,
8+ " pyproject.toml:version =" ,
9+ " README.rst:github" ,
10+ " src/logseq_doctor/__init__.py" ,
911]
Original file line number Diff line number Diff line change 1+ ## v0.1.1 (2022-08-21)
2+
3+ ### Fix
4+
5+ - ImportError on lsd --help
6+
7+ ## v0.1.0 (2022-03-26)
8+
9+ ### Feat
10+
11+ - convert headers and flat paragraphs to an outline
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ Overview
4343 :alt: Supported implementations
4444 :target: https://pypi.org/project/logseq-doctor
4545
46- .. |commits-since | image :: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.1.0 .svg
46+ .. |commits-since | image :: https://img.shields.io/github/commits-since/andreoliwa/logseq-doctor/v0.1.1 .svg
4747 :alt: Commits since latest release
48- :target: https://github.com/andreoliwa/logseq-doctor/compare/v0.1.0 ...master
48+ :target: https://github.com/andreoliwa/logseq-doctor/compare/v0.1.1 ...master
4949
5050
5151
Original file line number Diff line number Diff line change 2020year = '2022'
2121author = 'W Augusto Andreoli'
2222copyright = '{0}, {1}' .format (year , author )
23- version = release = '0.1.0 '
23+ version = release = '0.1.1 '
2424
2525pygments_style = 'trac'
2626templates_path = ['.' ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ skip-string-normalization = true
55
66[tool .poetry ]
77name = " logseq-doctor"
8- version = " 0.1.0 "
8+ version = " 0.1.1 "
99description = " Logseq Doctor: heal your flat old Markdown files before importing them"
1010authors = [" W. Augusto Andreoli <andreoliwa@gmail.com>" ]
1111license = " MIT"
Original file line number Diff line number Diff line change 33from mistletoe import span_token
44from mistletoe .base_renderer import BaseRenderer
55
6- __version__ = '0.1.0 '
6+ __version__ = '0.1.1 '
77
88
99class LogseqRenderer (BaseRenderer ):
You can’t perform that action at this time.
0 commit comments