From 87eb4a5a3800e3b5aac55fef1f55a5b89618f1cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fern=C3=A1ndez?= Date: Sat, 25 May 2024 10:29:55 +0200 Subject: [PATCH] Bump to 0.5.1 --- Cargo.toml | 2 +- pkg/deb/debian/changelog | 6 ++++++ pkg/rpm/fim.spec | 3 +++ src/appconfig.rs | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ae0d649..dd41e90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fim" -version = "0.5.0" +version = "0.5.1" authors = ["José Fernández <´pylott@gmail.com´>"] edition = "2021" diff --git a/pkg/deb/debian/changelog b/pkg/deb/debian/changelog index f4f6393..bd0a02a 100644 --- a/pkg/deb/debian/changelog +++ b/pkg/deb/debian/changelog @@ -1,3 +1,9 @@ +fim (0.5.1-1) xenial; urgency=medium + + * More info: https://github.com/Achiefs/fim/releases/tag/v0.5.1 + + -- Jose Fernandez Sat, 25 May 2024 10:27:00 +0000 + fim (0.5.0-1) xenial; urgency=medium * More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 diff --git a/pkg/rpm/fim.spec b/pkg/rpm/fim.spec index 6272877..12b3679 100644 --- a/pkg/rpm/fim.spec +++ b/pkg/rpm/fim.spec @@ -101,6 +101,9 @@ rm -fr %{buildroot} # ----------------------------------------------------------------------------- %changelog +* Sat May 25 2024 support - 0.5.1 +- More info: https://github.com/Achiefs/fim/releases/tag/v0.5.1 + * Tue Apr 30 2024 support - 0.5.0 - More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 diff --git a/src/appconfig.rs b/src/appconfig.rs index 170fca6..e7144cc 100644 --- a/src/appconfig.rs +++ b/src/appconfig.rs @@ -1,7 +1,7 @@ // Copyright (C) 2021, Achiefs. // Global constants definitions -pub const VERSION: &str = "0.5.0"; +pub const VERSION: &str = "0.5.1"; pub const NETWORK_MODE: &str = "NETWORK"; pub const FILE_MODE: &str = "FILE"; pub const BOTH_MODE: &str = "BOTH";