Skip to content

Commit

Permalink
bump version 0.6.6 -> 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
liran-funaro committed Sep 3, 2024
1 parent f11af7b commit 9c0d88d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A Sphinx extension to add markdown generation support.
## Install

```sh
pip3 install sphinx-markdown-builder==0.6.6
pip3 install sphinx-markdown-builder==0.6.7
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sphinx-markdown-builder"
version = "0.6.6"
version = "0.6.7"
description = "A Sphinx extension to add markdown generation support."
readme = "README.md"
authors = [{ name = "Liran Funaro", email = "[email protected]" }]
Expand Down Expand Up @@ -41,7 +41,7 @@ dev = [
Homepage = "https://github.com/liran-funaro/sphinx-markdown-builder"

[tool.bumpver]
current_version = "0.6.6"
current_version = "0.6.7"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion sphinx_markdown_builder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from sphinx_markdown_builder.builder import MarkdownBuilder

__version__ = "0.6.6"
__version__ = "0.6.7"
__docformat__ = "reStructuredText"


Expand Down
2 changes: 1 addition & 1 deletion tests/expected/overrides-auto-summery.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<meta name="author" content="Liran Funaro"/>
<meta name="copyright" content="Copyright (c) 2023-2024, Liran Funaro."/>
<meta name="version" content="0.6.6"/>
<meta name="version" content="0.6.7"/>

<!-- Taken from https://github.com/FabianNiehaus/sphinx-markdown-builder-toctree-test -->
<!-- Sphinx-Markdown-Builder TocTree Test documentation master file, created by
Expand Down
2 changes: 1 addition & 1 deletion tests/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
project = "sphinx_markdown_builder"
copyright = "Copyright (c) 2023-2024, Liran Funaro."
author = "Liran Funaro"
version = "0.6.6"
version = "0.6.7"

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

0 comments on commit 9c0d88d

Please sign in to comment.