Skip to content

Commit a177cc9

Browse files
committed
bump version 0.6.8 -> 0.6.9
Signed-off-by: Liran Funaro <liran.funaro@gmail.com>
1 parent 7c4daaf commit a177cc9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Sphinx extension to add markdown generation support.
77
## Install
88

99
```sh
10-
pip3 install sphinx-markdown-builder==0.6.8
10+
pip3 install sphinx-markdown-builder==0.6.9
1111
```
1212

1313
## Usage

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "sphinx-markdown-builder"
9-
version = "0.6.8"
9+
version = "0.6.9"
1010
description = "A Sphinx extension to add markdown generation support."
1111
readme = "README.md"
1212
authors = [{ name = "Liran Funaro", email = "liran.funaro@gmail.com" }]
@@ -33,7 +33,7 @@ requires-python = ">=3.7"
3333

3434
[project.optional-dependencies]
3535
dev = [
36-
"sphinx>=5.3.0", # For development, we need a higher version for the tests' outputs to be identical.
36+
"sphinx>=9.0.0", # For development, we need a higher version for the tests' outputs to be identical.
3737
"bumpver", "black", "isort", "flake8", "pylint", "pip-tools", "pytest", "pytest-cov", "coveralls",
3838
"sphinxcontrib-plantuml", "sphinxcontrib.httpdomain",
3939
]
@@ -42,7 +42,7 @@ dev = [
4242
Homepage = "https://github.com/liran-funaro/sphinx-markdown-builder"
4343

4444
[tool.bumpver]
45-
current_version = "0.6.8"
45+
current_version = "0.6.9"
4646
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
4747
commit_message = "bump version {old_version} -> {new_version}"
4848
commit = true

sphinx_markdown_builder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx_markdown_builder.builder import MarkdownBuilder
88

99

10-
__version__ = "0.6.8"
10+
__version__ = "0.6.9"
1111
__docformat__ = "reStructuredText"
1212

1313

tests/expected/overrides-auto-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<meta name="author" content="Liran Funaro"/>
22
<meta name="copyright" content="Copyright (c) 2023-2025, Liran Funaro."/>
3-
<meta name="version" content="0.6.8"/>
3+
<meta name="version" content="0.6.9"/>
44

55
<a id="auto-module"></a>
66

tests/expected/overrides-auto-summery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<meta name="author" content="Liran Funaro"/>
22
<meta name="copyright" content="Copyright (c) 2023-2025, Liran Funaro."/>
3-
<meta name="version" content="0.6.8"/>
3+
<meta name="version" content="0.6.9"/>
44

55
<!-- Taken from https://github.com/FabianNiehaus/sphinx-markdown-builder-toctree-test -->
66
<!-- Sphinx-Markdown-Builder TocTree Test documentation master file, created by sphinx-quickstart on Thu Sep 3 12:25:35 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -->

tests/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
project = "sphinx_markdown_builder"
1111
copyright = "Copyright (c) 2023-2025, Liran Funaro."
1212
author = "Liran Funaro"
13-
version = "0.6.8"
13+
version = "0.6.9"
1414

1515
extensions = [
1616
"sphinx.ext.autodoc", # Core library for html generation from docstrings

0 commit comments

Comments
 (0)