Skip to content

Commit

Permalink
Bump to 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
okynos committed Oct 31, 2023
1 parent da32fa5 commit 8dfb2ce
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fim"
version = "0.4.9"
version = "0.4.10"
authors = ["José Fernández <´pylott@gmail.com´>"]
edition = "2021"

Expand Down
6 changes: 6 additions & 0 deletions pkg/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fim (0.4.10-1) xenial; urgency=medium

* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.10

-- Jose Fernandez <support@achiefs.com> Tue, 31 Oct 2023 16:20:00 +0000

fim (0.4.9-1) xenial; urgency=medium

* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.9
Expand Down
2 changes: 1 addition & 1 deletion pkg/fim.1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.\" *
.\" **************************************************************************
.\"
.TH fim 1 "01 Jun 2022" "FIM 0.4.9" "FIM Manual"
.TH fim 1 "01 Jun 2022" "FIM 0.4.10" "FIM Manual"

.SH NAME
.B FIM
Expand Down
2 changes: 1 addition & 1 deletion pkg/msi/fim.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='File Integrity Monitor' Manufacturer='Achiefs LLC.' Id='*'
UpgradeCode='5b9136b1-f19d-4af0-9efe-356fabdf1467'
Language='1033' Codepage='1252' Version='0.4.9'>
Language='1033' Codepage='1252' Version='0.4.10'>
<Package Id='*' Keywords='Installer'
Description="FIM is a Host-based file monitoring tool that performs file system analysis and real time alerting."
Comments='FIM is an open source application, coded in Rust.'
Expand Down
3 changes: 3 additions & 0 deletions pkg/rpm/fim.spec
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ rm -fr %{buildroot}
# -----------------------------------------------------------------------------

%changelog
* Tue Oct 31 2023 support <support@achiefs.com> - 0.4.10
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.10

* Fri Sep 08 2023 support <support@achiefs.com> - 0.4.9
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.9

Expand Down
2 changes: 1 addition & 1 deletion src/auditevent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ impl Event {
version: self.version.clone(),
path: self.path.clone(),
file: self.file.clone(),
size: self.size.clone(),
size: self.size,
labels: self.labels.clone(),
operation: self.operation.clone(),
checksum: self.checksum.clone(),
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (C) 2021, Achiefs.

// Global constants definitions
pub const VERSION: &str = "0.4.9";
pub const VERSION: &str = "0.4.10";
pub const NETWORK_MODE: &str = "NETWORK";
pub const FILE_MODE: &str = "FILE";
pub const BOTH_MODE: &str = "BOTH";
Expand Down
2 changes: 1 addition & 1 deletion src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Event {
node: self.node.clone(),
version: self.version.clone(),
path: self.path.clone(),
size: self.size.clone(),
size: self.size,
kind: self.kind,
labels: self.labels.clone(),
operation: self.operation.clone(),
Expand Down

0 comments on commit 8dfb2ce

Please sign in to comment.