Skip to content

Commit 7a40e71

Browse files
chore: version upgrade => 0.3.0
1 parent fc05634 commit 7a40e71

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ incremental = false
4949
strip = true
5050

5151
[workspace.package]
52-
version = "0.2.23-rc.5"
52+
version = "0.3.0"
5353
edition = "2024"
5454
license = "MIT"
5555
publish = false

charts/wazuh-cert-server/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.25
18+
version: 0.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.2.23"
24+
appVersion: "0.3.0"
2525

2626
home: https://github.com/ADORSYS-GIS/wazuh-cert-oauth2
2727

charts/wazuh-cert-webhook/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.27
18+
version: 0.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.2.23"
24+
appVersion: "0.3.0"
2525

2626
home: https://github.com/ADORSYS-GIS/wazuh-cert-oauth2
2727

crates/wazuh-cert-oauth2-client/src/services/save_to_file.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async fn write_with_permissions(
3838
#[cfg(unix)]
3939
{
4040
// Create with 0640 on Unix; best-effort on other platforms
41-
std_opts.mode(0o640);
41+
std_opts.mode(0o644);
4242
}
4343
let mut file = std_opts.open(file_path).await?;
4444
file.write_all(contents.as_ref()).await?;

scripts/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $ErrorActionPreference = "Stop"
55
# Default log level and application details
66
$LOG_LEVEL = if ($env:LOG_LEVEL -ne $null) { $env:LOG_LEVEL } else { "INFO" }
77
$APP_NAME = if ($env:APP_NAME -ne $null) { $env:APP_NAME } else { "wazuh-cert-oauth2-client" }
8-
$DEFAULT_WOPS_VERSION = "0.2.23-rc.5"
8+
$DEFAULT_WOPS_VERSION = "0.3.0"
99
$WOPS_VERSION = if ($env:WOPS_VERSION -ne $null) { $env:WOPS_VERSION } else { $DEFAULT_WOPS_VERSION }
1010
$OSSEC_CONF_PATH = if ($env:OSSEC_CONF_PATH -ne $null) { $env:OSSEC_CONF_PATH } else { "C:\Program Files (x86)\ossec-agent\ossec.conf" }
1111
$USER = "root"

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010
# Default log level and application details
1111
LOG_LEVEL=${LOG_LEVEL:-INFO}
1212
APP_NAME=${APP_NAME:-"wazuh-cert-oauth2-client"}
13-
WOPS_VERSION=${WOPS_VERSION:-"0.2.23-rc.5"}
13+
WOPS_VERSION=${WOPS_VERSION:-"0.3.0"}
1414
USER="root"
1515
GROUP="wazuh"
1616

0 commit comments

Comments
 (0)