Skip to content

Commit

Permalink
bump 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edwloef committed Jan 5, 2025
1 parent 8602aff commit 31cd412
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "iced_file_tree"
version = "0.1.5"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "A lightweight file tree widget for the iced toolkit."
repository = "https://github.com/edwloef/iced_file_tree"
readme = "README.md"
categories = ["gui"]
rust-version = "1.81"
rust-version = "1.82"

[dependencies]
iced = { version = "0.13.1", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Include `iced_file_tree` as a dependency in your `Cargo.toml`:
```toml
[dependencies]
iced = "0.13.1"
iced_file_tree = "0.1.0"
iced_file_tree = "0.2.0"
```

### Example
Expand All @@ -28,7 +28,7 @@ enum Message {
}

fn view(state: &State) -> Element<'_, Message> {
let path: PathBuf = /* */
let path: PathBuf = // ...

scrollable(
file_tree(path)
Expand Down
2 changes: 1 addition & 1 deletion src/file_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use std::{
/// }
///
/// fn view(state: &State) -> Element<'_, Message> {
/// let path: PathBuf = /* */
/// let path: PathBuf = // ...
///
/// scrollable(
/// file_tree(path)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! }
//!
//! fn view(state: &State) -> Element<'_, Message> {
//! let path: PathBuf = /* */
//! let path: PathBuf = // ...
//!
//! scrollable(
//! file_tree(path)
Expand Down

0 comments on commit 31cd412

Please sign in to comment.