Skip to content

Commit

Permalink
Allow OpenSSH@9 (#91)
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Schnetter <schnetter@gmail.com>
  • Loading branch information
giordano and eschnett authored Sep 23, 2024
1 parent 5306737 commit 9caa6cc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Version [v0.1.20] -- 2024-09-24

### Changed

* Allow OpenSSH_jll 9 as dependency. ([#74], [#91])

## Version [v0.1.19] -- 2024-01-28

### Changed
Expand Down Expand Up @@ -177,7 +183,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#64]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/64
[#65]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/65
[#71]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/71
[#74]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/74
[#80]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/80
[#81]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/81
[#84]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/84
[#85]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/85
[#91]: https://github.com/JuliaDocs/DocumenterTools.jl/issues/91
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DocumenterTools"
uuid = "35a29f4d-8980-5a13-9543-d66fff28ecb8"
version = "0.1.19"
version = "0.1.20"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand All @@ -18,7 +18,7 @@ AbstractTrees = "0.3, 0.4"
DocStringExtensions = "0.7, 0.8, 0.9"
Documenter = "0.20, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 1"
Gumbo = "0.7, 0.8"
OpenSSH_jll = "8"
OpenSSH_jll = "8, 9.9.1"
Sass = "0.1, 0.2"
julia = "1.6"

Expand Down
2 changes: 1 addition & 1 deletion src/genkeys.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function genkeys(; user="\$USER", repo="\$REPO")
# Generate the ssh key pair.
mktempdir() do path
cd(path) do
cmd = `$(sshkeygen) -N "" -C Documenter -m PEM -f $filename`
cmd = `$(sshkeygen) -t rsa -N "" -C Documenter -m PEM -f $filename`
out, err = IOBuffer(), IOBuffer()
try
run(pipeline(cmd, stdout=out, stderr=err))
Expand Down

0 comments on commit 9caa6cc

Please sign in to comment.