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 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 3903eb7..77bb0f5 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,13 +1,13 @@ // 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"; 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};