diff --git a/.circleci/config.yml b/.circleci/config.yml index 47e8d58..ffb0765 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,14 +7,14 @@ workflows: - unreal-engine-ci matrix: parameters: - unreal-engine-version: ["5.1.0", "5.2.0"] + unreal-engine-version: ["5.1.0", "5.2.0", "5.3.0"] version: ["full"] - build-plugin: context: - unreal-engine-ci matrix: parameters: - unreal-engine-version: ["4.27.0", "5.0.0", "5.1.0", "5.2.0"] + unreal-engine-version: ["4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0"] version: ["free", "full"] - build-sample: context: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0bc992e..bc2c0ab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: unreal_engine_version: - ["4.26.0", "4.27.0", "5.0.0", "5.1.0", "5.2.0"] + ["4.26.0", "4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0"] version: ["free", "full"] steps: diff --git a/AdvancedControlFlow/AdvancedControlFlow.uplugin b/AdvancedControlFlow/AdvancedControlFlow.uplugin index 457f66c..e70503b 100644 --- a/AdvancedControlFlow/AdvancedControlFlow.uplugin +++ b/AdvancedControlFlow/AdvancedControlFlow.uplugin @@ -4,7 +4,7 @@ "VersionName": "1.3.0", "FriendlyName": "Advanced Control Flow", "Description": "Blueprint nodes to realize the complex control flow", - "EngineVersion": "5.2.0", + "EngineVersion": "5.3.0", "Category": "Other", "CreatedBy": "nutti (Colory Games)", "CreatedByURL": "https://github.com/colory-games/UEPlugin-AdvancedControlFlow", diff --git a/README.md b/README.md index c8683aa..585dcc6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ By using this plugin, you can realize this case with only one Multi-Branch node. This plugin supports on the below environment. -* Unreal Engine Version: 4.26 / 4.27 / 5.0 / 5.1 / 5.2 +* Unreal Engine Version: 4.26 / 4.27 / 5.0 / 5.1 / 5.2 / 5.3 * Development Platforms: Windows / macOS / Linux * Target Build Platforms: All platforms diff --git a/tools/remove_code.sh b/tools/remove_code.sh index f39e6b6..741b058 100644 --- a/tools/remove_code.sh +++ b/tools/remove_code.sh @@ -6,7 +6,7 @@ set -eEu SUPPORTED_VERSIONS=( "4.26.0" "4.27.0" - "5.0.0" "5.1.0" "5.2.0" + "5.0.0" "5.1.0" "5.2.0" "5.3.0" ) function usage() { diff --git a/tools/replace_engine_version.sh b/tools/replace_engine_version.sh index f515750..6c9e2db 100644 --- a/tools/replace_engine_version.sh +++ b/tools/replace_engine_version.sh @@ -6,7 +6,7 @@ set -eEu SUPPORTED_VERSIONS=( "4.26.0" "4.27.0" - "5.0.0" "5.1.0" "5.2.0" + "5.0.0" "5.1.0" "5.2.0" "5.3.0" ) function usage() { @@ -33,6 +33,6 @@ if [ ${supported} -eq 0 ]; then fi for file in `find ${source_dir} -name "*.uplugin"`; do - sed -i -e "s/\"EngineVersion\": \"5.2.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file} + sed -i -e "s/\"EngineVersion\": \"5.3.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file} echo "Replaced engine version in ${file}" done