Skip to content

Commit

Permalink
bump to 0.95.0 (#70)
Browse files Browse the repository at this point in the history
- implement `Plugin.version`
- bump dependencies
- bump version
- update lock file
  • Loading branch information
amtoine authored Jun 29, 2024
1 parent 5873a84 commit 9be16d9
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 31 deletions.
78 changes: 51 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name = "nu_plugin_explore"
[dependencies]
anyhow = "1.0.73"
crossterm = "0.27.0"
nuon = "0.94.0"
nu-plugin = "0.94.0"
nu-protocol = "0.94.0"
nuon = "0.95.0"
nu-plugin = "0.95.0"
nu-protocol = "0.95.0"
ratatui = "0.26.1"
url = "2.4.0"

Expand All @@ -20,4 +20,4 @@ bench = false
[package]
edition = "2021"
name = "nu_plugin_explore"
version = "0.94.0"
version = "0.95.0"
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ impl Plugin for ExplorePlugin {
fn commands(&self) -> Vec<Box<dyn PluginCommand<Plugin = Self>>> {
vec![Box::new(Explore)]
}

fn version(&self) -> String {
env!("CARGO_PKG_VERSION").into()
}
}

struct Explore;
Expand Down

0 comments on commit 9be16d9

Please sign in to comment.