diff --git a/Cargo.toml b/Cargo.toml index 87411f8..d0d7427 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fim" -version = "0.5.1" +version = "0.5.2" authors = ["José Fernández <´pylott@gmail.com´>"] edition = "2021" diff --git a/pkg/deb/debian/changelog b/pkg/deb/debian/changelog index c712db8..2f1d236 100644 --- a/pkg/deb/debian/changelog +++ b/pkg/deb/debian/changelog @@ -1,3 +1,9 @@ +fim (0.5.2-1) xenial; urgency=medium + + * More info: https://github.com/Achiefs/fim/releases/tag/v0.5.2 + + -- Jose Fernandez Wed, 15 Jan 2025 20:54:00 +0000 + fim (0.5.1-1) xenial; urgency=medium * More info: https://github.com/Achiefs/fim/releases/tag/v0.5.1 diff --git a/pkg/rpm/fim.spec b/pkg/rpm/fim.spec index 4026848..84cdfad 100644 --- a/pkg/rpm/fim.spec +++ b/pkg/rpm/fim.spec @@ -101,6 +101,9 @@ rm -fr %{buildroot} # ----------------------------------------------------------------------------- %changelog +* Wed Jan 15 2025 support - 0.5.2 +- More info: https://github.com/Achiefs/fim/releases/tag/v0.5.2 + * Thu Oct 10 2024 support - 0.5.1 - More info: https://github.com/Achiefs/fim/releases/tag/v0.5.1 diff --git a/src/appconfig.rs b/src/appconfig.rs index 0104522..922a8a2 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.1"; +pub const VERSION: &str = "0.5.2"; pub const NETWORK_MODE: &str = "NETWORK"; pub const FILE_MODE: &str = "FILE"; pub const BOTH_MODE: &str = "BOTH";