From 8b2330b41582b9c123fc1d31b725eefffff36758 Mon Sep 17 00:00:00 2001 From: Milo Moisson Date: Sun, 12 May 2024 19:52:05 +0200 Subject: [PATCH] chore: bump version --- Cargo.lock | 2 +- Cargo.toml | 7 ++++--- README.md | 5 +++++ src/main.rs | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 600d561..1ab05ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -317,7 +317,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" [[package]] name = "git-leave" -version = "1.6.1" +version = "1.6.2" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 4386312..3af56b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,14 @@ [package] name = "git-leave" -version = "1.6.1" +version = "1.6.2" +edition = "2021" + description = "Check for unsaved or uncommitted changes on your machine" authors = ["Milo Moisson "] -repository = "https://github.com/MrNossiom/git-leave" +repository = "https://github.com/mrnossiom/git-leave" keywords = ["crawler", "git", "cli"] categories = ["development-tools"] license = "CECILL-2.1" -edition = "2021" [dependencies] clap = { version = "4.3.4", features = ["derive"] } diff --git a/README.md b/README.md index 5f46d28..80a229b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ Check for unsaved or uncommitted changes on your machine Cachix Cache + + Time spent + +

+

# Installation diff --git a/src/main.rs b/src/main.rs index 9284831..cba13c3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,5 @@ #![doc( - html_logo_url = "https://raw.githubusercontent.com/MrNossiom/git-leave/main/assets/logo.png" + html_logo_url = "https://raw.githubusercontent.com/mrnossiom/git-leave/main/assets/logo.png" )] #![doc = include_str!("../README.md")]