Skip to content

Commit

Permalink
Merge pull request #11 from JuliaWeb/0.11
Browse files Browse the repository at this point in the history
Update code for libssh 0.11.0 and bump version
  • Loading branch information
JamesWrigley authored Aug 10, 2024
2 parents 0655dbc + 083df0e commit 9260281
Show file tree
Hide file tree
Showing 6 changed files with 547 additions and 79 deletions.
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

2 comments on commit 9260281

@JamesWrigley
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/112832

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 9260281be98edfdccc10a6208103a00362f044e8
git push origin v0.5.0

Please sign in to comment.