Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.9.3](https://github.com/f1sherFM/PyDoc2Markdown/compare/v0.9.2...v0.9.3) (2026-07-12)


### Documentation

* add public launch kit ([#64](https://github.com/f1sherFM/PyDoc2Markdown/issues/64)) ([65d3236](https://github.com/f1sherFM/PyDoc2Markdown/commit/65d32363593de52fa725b3201d71f6bc0cc09847))

## [0.9.2](https://github.com/f1sherFM/PyDoc2Markdown/compare/v0.9.1...v0.9.2) (2026-07-12)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pydoc2markdown"
version = "0.9.2"
version = "0.9.3"
description = "Convert Python docstrings to Markdown documentation."
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion src/pydoc2markdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""PyDoc2Markdown - Convert Python docstrings to Markdown documentation."""

__version__ = "0.9.2"
__version__ = "0.9.3"
__author__ = "f1sherFM"

from pydoc2markdown.core.generator import MarkdownGenerator, OutputOptions
Expand Down