From 8bf00eff2197a2578ad78571c4bde3c345ff15ef Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Fri, 12 Apr 2024 10:09:23 +0100 Subject: [PATCH] chore: bump version to v0.4.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- flake.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2eb95e2..54c9571 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -173,7 +173,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "vaporise" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index e533a5d..14beb78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaporise" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Muhammad Nauman Raza "] description = "A simple, featureful and blazingly fast memory-safe alternative to 'rm' written in Rust." diff --git a/flake.nix b/flake.nix index 5d64645..e9b3460 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { packages.default = pkgs.rustPlatform.buildRustPackage { pname = "vpr"; - version = "0.3.0"; + version = "0.4.0"; cargoLock.lockFile = ./Cargo.lock; src = ./.; };