Skip to content
Open
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
6 changes: 6 additions & 0 deletions libvnc-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.6](https://github.com/Chiichen/libvnc-rs/compare/libvnc-sys-v0.1.5...libvnc-sys-v0.1.6) - 2025-01-11

### Other

- fix clippy error

## [0.1.5](https://github.com/Chiichen/libvnc-rs/compare/libvnc-sys-v0.1.4...libvnc-sys-v0.1.5) - 2024-11-30

### Other
Expand Down
2 changes: 1 addition & 1 deletion libvnc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libvnc-sys"
authors = ["Chiichen <[email protected]>"]
version = "0.1.5"
version = "0.1.6"
edition = "2021"
keywords = ["vnc", "libvnc", "vncserver", "binding"]
license = "LGPL-3.0-only"
Expand Down
6 changes: 6 additions & 0 deletions libvnc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/Chiichen/libvnc-rs/compare/libvnc-v0.1.4...libvnc-v0.1.5) - 2025-01-11

### Other

- fix clippy error

## [0.1.4](https://github.com/Chiichen/libvnc-rs/compare/libvnc-v0.1.3...libvnc-v0.1.4) - 2024-11-30

### Other
Expand Down
4 changes: 2 additions & 2 deletions libvnc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libvnc"
authors = ["Chiichen <[email protected]>"]
version = "0.1.4"
version = "0.1.5"
edition = "2021"
keywords = ["vnc", "libvnc", "vncserver", "rfb"]
license = "LGPL-3.0-only"
Expand All @@ -10,7 +10,7 @@ description = "libvncserver(client) bindings for Rust. VNC is a set of programs
repository = "https://github.com/Chiichen/libvnc-rs/tree/master/libvnc"
homepage = "https://github.com/Chiichen/libvnc-rs"
[dependencies]
libvnc-sys = { path = "../libvnc-sys", version = "0.1.5" }
libvnc-sys = { path = "../libvnc-sys", version = "0.1.6" }
log = "0.4.21"

[dev-dependencies]
Expand Down