Skip to content

Commit 8a3a777

Browse files
committed
bump: version 0.1.0 → 0.1.1
1 parent b0219b5 commit 8a3a777

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

.cz.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[tool.commitizen]
22
name = "cz_conventional_commits"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
tag_format = "v$version"
5+
update_changelog_on_bump = true
56
version_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
]

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2022'
2121
author = 'W Augusto Andreoli'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '0.1.0'
23+
version = release = '0.1.1'
2424

2525
pygments_style = 'trac'
2626
templates_path = ['.']

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ skip-string-normalization = true
55

66
[tool.poetry]
77
name = "logseq-doctor"
8-
version = "0.1.0"
8+
version = "0.1.1"
99
description = "Logseq Doctor: heal your flat old Markdown files before importing them"
1010
authors = ["W. Augusto Andreoli <andreoliwa@gmail.com>"]
1111
license = "MIT"

src/logseq_doctor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from mistletoe import span_token
44
from mistletoe.base_renderer import BaseRenderer
55

6-
__version__ = '0.1.0'
6+
__version__ = '0.1.1'
77

88

99
class LogseqRenderer(BaseRenderer):

0 commit comments

Comments
 (0)