Skip to content

Commit 9260281

Browse files
authored
Merge pull request #11 from JuliaWeb/0.11
Update code for libssh 0.11.0 and bump version
2 parents 0655dbc + 083df0e commit 9260281

File tree

6 files changed

+547
-79
lines changed

6 files changed

+547
-79
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LibSSH"
22
uuid = "00483490-30f8-4353-8aba-35b82f51f4d0"
33
authors = ["James Wrigley <james@puiterwijk.org> and contributors"]
4-
version = "0.4.0"
4+
version = "0.5.0"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -22,4 +22,4 @@ Kerberos_krb5_jll = "1"
2222
Printf = "1"
2323
Sockets = "1"
2424
julia = "1.9"
25-
libssh_jll = "0.10"
25+
libssh_jll = "0.11"

docs/src/bindings.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
```@meta
2+
CollapsedDocStrings = true
3+
```
4+
15
# Low-level bindings
26

37
The symbols documented on this page have all been generated automatically, along

docs/src/changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@ CurrentModule = LibSSH
77
This documents notable changes in LibSSH.jl. The format is based on [Keep a
88
Changelog](https://keepachangelog.com).
99

10-
## Unreleased
10+
## [v0.5.0] - 2024-08-10
1111

1212
### Added
1313

1414
- A new [`Forwarder(::Session, ::String, ::Int)`](@ref) constructor to allow for
1515
forwarding a port to an internal socket instead of to a port ([#10]).
1616

17+
### Changed
18+
19+
- Updated the libssh library to 0.11.0 ([#11]).
20+
1721
## [v0.4.0] - 2024-03-12
1822

1923
### Added

gen/gen.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ function get_docs(node::ExprNode, doc::Vector{String})
5757
String["Session struct ([upstream documentation](https://api.libssh.org/stable/libssh_tutor_guided_tour.html))."]
5858
elseif node.id == :ssh_message_auth_interactive_request
5959
String["Initiate keyboard-interactive authentication from a server."]
60+
elseif node.id == :sftp_limits_t
61+
String["Pointer to a [`sftp_limits_struct`](@ref)"]
6062

6163
# Internal Clang.jl structs start with '__' and we don't want to document them
6264
elseif startswith(string(node.id), "__")

0 commit comments

Comments
 (0)