Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update code for libssh 0.11.0 and bump version #11

Merged
merged 1 commit into from
Aug 10, 2024
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
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LibSSH"
uuid = "00483490-30f8-4353-8aba-35b82f51f4d0"
authors = ["James Wrigley <[email protected]> and contributors"]
version = "0.4.0"
version = "0.5.0"

[deps]
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
Expand All @@ -22,4 +22,4 @@ Kerberos_krb5_jll = "1"
Printf = "1"
Sockets = "1"
julia = "1.9"
libssh_jll = "0.10"
libssh_jll = "0.11"
4 changes: 4 additions & 0 deletions docs/src/bindings.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
```@meta
CollapsedDocStrings = true
```

# Low-level bindings

The symbols documented on this page have all been generated automatically, along
Expand Down
6 changes: 5 additions & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ CurrentModule = LibSSH
This documents notable changes in LibSSH.jl. The format is based on [Keep a
Changelog](https://keepachangelog.com).

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

### Added

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

### Changed

- Updated the libssh library to 0.11.0 ([#11]).

## [v0.4.0] - 2024-03-12

### Added
Expand Down
2 changes: 2 additions & 0 deletions gen/gen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ function get_docs(node::ExprNode, doc::Vector{String})
String["Session struct ([upstream documentation](https://api.libssh.org/stable/libssh_tutor_guided_tour.html))."]
elseif node.id == :ssh_message_auth_interactive_request
String["Initiate keyboard-interactive authentication from a server."]
elseif node.id == :sftp_limits_t
String["Pointer to a [`sftp_limits_struct`](@ref)"]

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