Skip to content

Commit 2ff3c84

Browse files
authored
add CHANGELOG.md (#721)
Co-authored-by: Christopher Doris <github.com/cjdoris>
1 parent c1b9d54 commit 2ff3c84

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ dist/
77
.CondaPkg/
88
/jltest.*
99
uv.lock
10+
docs/src/releasenotes.md

docs/src/releasenotes.md renamed to CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Release Notes
1+
# Changelog
22

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

1112
## 0.9.28 (2025-09-17)

docs/make.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ using Documenter, PythonCall
22

33
include("customdocs.jl")
44

5+
# include the changelog in the docs (called release notes there)
6+
changelog = read("CHANGELOG.md", String)
7+
changelog = replace(changelog, "# Changelog" => "# Release Notes")
8+
write("docs/src/releasenotes.md", changelog)
9+
510
makedocs(
611
sitename = "PythonCall & JuliaCall",
712
modules = [PythonCall],

0 commit comments

Comments
 (0)