diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1b65c25afa1..c563c512b7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -93,6 +93,7 @@ See the [release announcement](https://godotengine.org/article/maintenance-relea
- Fix wrong method called when setting NavigationRegion `travel_cost` ([GH-64068](https://github.com/godotengine/godot/pull/64068)).
- Fix NavigationObstacle nodes not registering to default navigation map ([GH-64372](https://github.com/godotengine/godot/pull/64372)).
- Exclude disabled StaticBody collisions from NavigationMesh baking ([GH-65775](https://github.com/godotengine/godot/pull/65775)).
+- Fix TileMaps placing baked NavigationPolygons with wrong offset without a Navigation2D node ([GH-66262](https://github.com/godotengine/godot/pull/66262)).
#### Networking
diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist
index facadc58e50..8c5f7952cac 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.5.1
+ 3.5.2
CFBundleSignature
godot
CFBundleVersion
- 3.5.1
+ 3.5.2
NSMicrophoneUsageDescription
Microphone access is required to capture audio.
NSCameraUsageDescription
diff --git a/misc/dist/windows/godot.iss b/misc/dist/windows/godot.iss
index 6ec7928fff0..7874a15b119 100644
--- a/misc/dist/windows/godot.iss
+++ b/misc/dist/windows/godot.iss
@@ -1,5 +1,5 @@
#define MyAppName "Godot Engine"
-#define MyAppVersion "3.5.1"
+#define MyAppVersion "3.5.2"
#define MyAppPublisher "Godot Engine contributors"
#define MyAppURL "https://godotengine.org/"
#define MyAppExeName "godot.exe"
diff --git a/version.py b/version.py
index 681271719cb..07adb46e1e1 100644
--- a/version.py
+++ b/version.py
@@ -2,8 +2,8 @@ short_name = "godot"
name = "Godot Engine"
major = 3
minor = 5
-patch = 1
-status = "stable"
+patch = 2
+status = "rc"
module_config = ""
year = 2022
website = "https://godotengine.org"