From 5e74554c9a980414663cddda6c4099dc26f66bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 22 Apr 2021 15:24:32 +0200 Subject: [PATCH] Bump version to 3.4-beta Feature work in 3.x likely won't have a big impact on stability so we can skip the dev/alpha phases and we'll start directly with a 3.4 beta 1 build once significant changes have been implemented. --- misc/dist/osx_tools.app/Contents/Info.plist | 4 ++-- misc/dist/windows/godot.iss | 2 +- version.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist index 0870473e03a..b14ec43fb78 100644 --- a/misc/dist/osx_tools.app/Contents/Info.plist +++ b/misc/dist/osx_tools.app/Contents/Info.plist @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.3 + 3.4 CFBundleSignature godot CFBundleVersion - 3.3 + 3.4 NSMicrophoneUsageDescription Microphone access is required to capture audio. NSCameraUsageDescription diff --git a/misc/dist/windows/godot.iss b/misc/dist/windows/godot.iss index 722c6263b0d..60715beb53f 100644 --- a/misc/dist/windows/godot.iss +++ b/misc/dist/windows/godot.iss @@ -1,5 +1,5 @@ #define MyAppName "Godot Engine" -#define MyAppVersion "3.3" +#define MyAppVersion "3.4" #define MyAppPublisher "Godot Engine contributors" #define MyAppURL "https://godotengine.org/" #define MyAppExeName "godot.exe" diff --git a/version.py b/version.py index f6eae3eb14f..2a9d5bd131f 100644 --- a/version.py +++ b/version.py @@ -1,9 +1,9 @@ short_name = "godot" name = "Godot Engine" major = 3 -minor = 3 +minor = 4 patch = 0 -status = "stable" +status = "beta" module_config = "" year = 2021 website = "https://godotengine.org"