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