Skip to content

Commit 07dd84e

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

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
30+
python-version: [ "3.11", "3.12", "3.13" ]
3131
steps:
3232
- uses: actions/checkout@v3
3333
- name: Set up Python ${{ matrix.python-version }}

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.4", # 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/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
* [Referencing terms from a glossary](blocks.md#referencing-terms-from-a-glossary)
6666
* [Http domain directive](blocks.md#http-domain-directive)
6767
* [C domain](blocks.md#c-domain)
68+
* [`PyType_GenericAlloc()`](blocks.md#c.PyType_GenericAlloc)
6869
* [Test Image With Target](image-target.md)
6970
* [Empty package](empty.md)
7071
* [Glossary test for multiple glossaries](glossaries.md)

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)