From 37af5999f3707d8e319b96ab3bb23721b52ae23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fern=C3=A1ndez?= Date: Tue, 14 Feb 2023 20:41:13 +0100 Subject: [PATCH 1/3] Adapt Windows default config path to installer path --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 3903eb7..ab9ecff 100644 --- a/src/config.rs +++ b/src/config.rs @@ -7,7 +7,7 @@ pub const FILE_MODE: &str = "FILE"; pub const BOTH_MODE: &str = "BOTH"; pub const MACHINE_ID_PATH: &str = "/etc/machine-id"; const CONFIG_LINUX_PATH: &str = "/etc/fim/config.yml"; -const CONFIG_WINDOWS_PATH: &str = "C:\\Program Files (x86)\\FIM\\config.yml"; +const CONFIG_WINDOWS_PATH: &str = "C:\\Program Files\\File Integrity Monitor\\config.yml"; // To parse files in yaml format use yaml_rust::yaml::{Yaml, YamlLoader, Array}; From 992cf0f9a4c02721917aa8ce08108f177e575abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fern=C3=A1ndez?= Date: Tue, 14 Feb 2023 20:57:16 +0100 Subject: [PATCH 2/3] Fix cargo tarpaulin last version error --- .github/workflows/coverall.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverall.yml b/.github/workflows/coverall.yml index e55d997..6594cb3 100644 --- a/.github/workflows/coverall.yml +++ b/.github/workflows/coverall.yml @@ -21,6 +21,7 @@ jobs: - name: Run cargo-tarpaulin uses: actions-rs/tarpaulin@v0.1 with: + version: 0.22.0 args: '--all-features --out Lcov --exclude-files src/main.rs src/monitor.rs' - name: upload to Coveralls uses: coverallsapp/github-action@master From 5e3bf09d3dca48365453fc033eb1e07e4476aab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fern=C3=A1ndez?= Date: Tue, 14 Feb 2023 22:36:24 +0100 Subject: [PATCH 3/3] Bump to 0.4.4 --- Cargo.toml | 2 +- pkg/deb/debian/changelog | 6 ++++++ pkg/fim.1 | 2 +- pkg/msi/fim.wxs | 2 +- pkg/rpm/fim.spec | 3 +++ src/config.rs | 2 +- 6 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 51becb2..7ab6631 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fim" -version = "0.4.3" +version = "0.4.4" authors = ["José Fernández <´pylott@gmail.com´>"] edition = "2021" diff --git a/pkg/deb/debian/changelog b/pkg/deb/debian/changelog index 1a6c50f..b70ec8a 100644 --- a/pkg/deb/debian/changelog +++ b/pkg/deb/debian/changelog @@ -1,3 +1,9 @@ +fim (0.4.4-1) xenial; urgency=medium + + * More info: https://github.com/Achiefs/fim/releases/tag/v0.4.4 + + -- Jose Fernandez Tue, 14 Feb 2023 22:35:00 +0000 + fim (0.4.3-1) xenial; urgency=medium * More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3 diff --git a/pkg/fim.1 b/pkg/fim.1 index 88e7bae..a2d4d49 100644 --- a/pkg/fim.1 +++ b/pkg/fim.1 @@ -19,7 +19,7 @@ .\" * .\" ************************************************************************** .\" -.TH fim 1 "01 Jun 2022" "FIM 0.4.3" "FIM Manual" +.TH fim 1 "01 Jun 2022" "FIM 0.4.4" "FIM Manual" .SH NAME .B FIM diff --git a/pkg/msi/fim.wxs b/pkg/msi/fim.wxs index 7e2f9b4..1392133 100644 --- a/pkg/msi/fim.wxs +++ b/pkg/msi/fim.wxs @@ -2,7 +2,7 @@ + Language='1033' Codepage='1252' Version='0.4.4'> - 0.4.4 +- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.4 + * Mon Dec 19 2022 support - 0.4.3 - More info: https://github.com/Achiefs/fim/releases/tag/v0.4.3 diff --git a/src/config.rs b/src/config.rs index ab9ecff..77bb0f5 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,7 +1,7 @@ // Copyright (C) 2021, Achiefs. // Global constants definitions -pub const VERSION: &str = "0.4.3"; +pub const VERSION: &str = "0.4.4"; pub const NETWORK_MODE: &str = "NETWORK"; pub const FILE_MODE: &str = "FILE"; pub const BOTH_MODE: &str = "BOTH";