diff --git a/CHANGELOG.md b/CHANGELOG.md index b494041053..7cf008caeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ * ![Enhancement][badge-enhancement] It is now possible to use MathJax v3 as the mathematics rendering in the HTML output. This can be done by passing `Documenter.MathJax3` as the `mathengine` keyword to `HTML`. ([#1362][github-1362], [#1367][github-1367]) +* ![Enhancement][badge-enhancement] The deployment commits created by Documenter are no longer signed by the **@zeptodoctor** user, but rather with the non-existing `documenter@juliadocs.github.io` email address. ([#1379][github-1379], [#1388][github-1388]) + * ![Bugfix][badge-bugfix] REPL doctest output lines starting with `#` right after the input code part are now correctly treated as being part of the output (unless prepended with 7 spaces, in line with the standard heuristic). ([#1369][github-1369]) ## Version `v0.25.1` @@ -638,6 +640,8 @@ [github-1367]: https://github.com/JuliaDocs/Documenter.jl/pull/1367 [github-1368]: https://github.com/JuliaDocs/Documenter.jl/pull/1368 [github-1369]: https://github.com/JuliaDocs/Documenter.jl/pull/1369 +[github-1379]: https://github.com/JuliaDocs/Documenter.jl/issues/1379 +[github-1388]: https://github.com/JuliaDocs/Documenter.jl/pull/1388 [documenterlatex]: https://github.com/JuliaDocs/DocumenterLaTeX.jl [documentermarkdown]: https://github.com/JuliaDocs/DocumenterMarkdown.jl diff --git a/src/Documenter.jl b/src/Documenter.jl index dc480abf62..55f655f33d 100644 --- a/src/Documenter.jl +++ b/src/Documenter.jl @@ -532,8 +532,8 @@ function git_push( function git_commands(sshconfig=nothing) # Setup git. run(`git init`) - run(`git config user.name "zeptodoctor"`) - run(`git config user.email "44736852+zeptodoctor@users.noreply.github.com"`) + run(`git config user.name "Documenter.jl"`) + run(`git config user.email "documenter@juliadocs.github.io"`) if sshconfig !== nothing run(`git config core.sshCommand "ssh -F $(sshconfig)"`) end