Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist/
.CondaPkg/
/jltest.*
uv.lock
docs/src/releasenotes.md
3 changes: 2 additions & 1 deletion docs/src/releasenotes.md → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Release Notes
# Changelog

## Unreleased
* Minimum supported Python version is now 3.10.
* Minimum supported Julia version is now 1.10.
* Showing `Py` now respects the `compact` option - output is limited to a single line of
at most the display width.
* Support policy now documented in the FAQ.
* Added this changelog (was previously at `docs/src/releasenotes.md`).
* Bug fixes.

## 0.9.28 (2025-09-17)
Expand Down
5 changes: 5 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ using Documenter, PythonCall

include("customdocs.jl")

# include the changelog in the docs (called release notes there)
changelog = read("CHANGELOG.md", String)
changelog = replace(changelog, "# Changelog" => "# Release Notes")
write("docs/src/releasenotes.md", changelog)

makedocs(
sitename = "PythonCall & JuliaCall",
modules = [PythonCall],
Expand Down
Loading