From 0341251d0fcb5e118fa8fa9052316834e62f805c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 16 Mar 2021 12:16:36 +0100 Subject: [PATCH] Bump version to 3.3-rc We decided to rename the upcoming 3.2.4 release to 3.3 to better reflect that it is a significant feature release, and not a maintenance update. The `3.2` branch was also renamed to `3.x` and will now be the development branch for future 3.x releases (3.3, 3.4, etc.). --- misc/dist/osx_tools.app/Contents/Info.plist | 4 ++-- misc/dist/windows/godot.iss | 2 +- .../editor/Godot.NET.Sdk/Godot.NET.Sdk/Godot.NET.Sdk.csproj | 4 ++-- .../GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs | 2 +- version.py | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist index 1fd91bb1544..0870473e03a 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.2.4 + 3.3 CFBundleSignature godot CFBundleVersion - 3.2.4 + 3.3 NSMicrophoneUsageDescription Microphone access is required to capture audio. NSCameraUsageDescription diff --git a/misc/dist/windows/godot.iss b/misc/dist/windows/godot.iss index d9c8cdb2802..722c6263b0d 100644 --- a/misc/dist/windows/godot.iss +++ b/misc/dist/windows/godot.iss @@ -1,5 +1,5 @@ #define MyAppName "Godot Engine" -#define MyAppVersion "3.2.4" +#define MyAppVersion "3.3" #define MyAppPublisher "Godot Engine contributors" #define MyAppURL "https://godotengine.org/" #define MyAppExeName "godot.exe" diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk/Godot.NET.Sdk.csproj b/modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk/Godot.NET.Sdk.csproj index a460685cac3..116596f0a68 100644 --- a/modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk/Godot.NET.Sdk.csproj +++ b/modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk/Godot.NET.Sdk.csproj @@ -6,8 +6,8 @@ Godot Engine contributors Godot.NET.Sdk - 3.2.4 - 3.2.4 + 3.3 + 3.3 https://github.com/godotengine/godot/tree/master/modules/mono/editor/Godot.NET.Sdk MSBuildSdk MSBuildSdk diff --git a/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs b/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs index 5f54bb4d9aa..ccbbb9ac01a 100644 --- a/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs +++ b/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectGenerator.cs @@ -8,7 +8,7 @@ namespace GodotTools.ProjectEditor { public static class ProjectGenerator { - public const string GodotSdkVersionToUse = "3.2.4"; + public const string GodotSdkVersionToUse = "3.3"; public const string GodotSdkNameToUse = "Godot.NET.Sdk"; public static ProjectRootElement GenGameProject(string name) diff --git a/version.py b/version.py index 457efc7e7df..5da3493af26 100644 --- a/version.py +++ b/version.py @@ -1,8 +1,8 @@ short_name = "godot" name = "Godot Engine" major = 3 -minor = 2 -patch = 4 +minor = 3 +patch = 0 status = "rc" module_config = "" year = 2021