Skip to content

Commit 19d4bdd

Browse files
authored
Merge pull request #88 from ADORSYS-GIS/fix-windows-parsing
chore: upgrade WOPS_VERSION -> 0.4.0
2 parents 1cef883 + efb8a61 commit 19d4bdd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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.3.0"
52+
version = "0.4.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.3.0
18+
version: 0.4.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.3.0"
24+
appVersion: "0.4.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.3.0
18+
version: 0.4.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.3.0"
24+
appVersion: "0.4.0"
2525

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

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.3.0"
8+
$DEFAULT_WOPS_VERSION = "0.4.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.3.0"}
13+
WOPS_VERSION=${WOPS_VERSION:-"0.4.0"}
1414
USER="root"
1515
GROUP="wazuh"
1616

0 commit comments

Comments
 (0)