Skip to content

Commit

Permalink
Bump smithay-clipboard and x11-clipboard
Browse files Browse the repository at this point in the history
This should use the latest versions of the said crates.
  • Loading branch information
kchibisov committed Oct 10, 2023
1 parent 10f1137 commit 16a93ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
cargo clippy --all-targets
- name: Oldstable
run: |
rustup default 1.61.0
rustup default 1.65.0
cargo clean
cargo test
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- Bump minimum supported Rust version to `1.61.0`
- Bump minimum supported Rust version to `1.65.0`
- Change `ClipboardProvider::set_contents` parameter type to `AsRef<str>`
- `smithay-clipboard` was bumped to `0.7.0` using the new wayland-rs stack
- `x11_clipboard` wasa bumped to `0.8.1`

## 0.8.2

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT / Apache-2.0"
keywords = ["clipboard"]
exclude = ["/.travis.yml"]
edition = "2021"
rust-version = "1.61.0"
rust-version = "1.65.0"

[features]
default = ["x11", "wayland"]
Expand All @@ -26,5 +26,5 @@ objc_id = "0.1"
objc-foundation = "0.1"

[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="ios", target_os="emscripten"))))'.dependencies]
x11-clipboard = { version = "0.7.0", optional = true }
smithay-clipboard = { version = "0.6.0", optional = true }
x11-clipboard = { version = "0.8.1", optional = true }
smithay-clipboard = { version = "0.7.0", optional = true }

0 comments on commit 16a93ac

Please sign in to comment.