From de2f0f147c5b7eff2d0f6dbc35042a4173fd59be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 8 Sep 2024 22:41:28 +0200 Subject: [PATCH] Bump version to 3.6-stable \o/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit At long last, after 2 years of development, Godot 3.6 is finally out! Developing it in parallel to the 4.x branch proved to be a challenge, as eventually I (RĂ©mi) hardly had any time to focus on it. Thankfully lawnjelly picked up the torch, both on the feature dev side (most new rendering features are his work) but now also as release manager for 3.x. For anyone still using Godot 3.5 for their released or soon-to-be published titles, upgrading to 3.6 should bring a lot of bug fixes, as well as a number of useful features and quality of life improvements. --- CHANGELOG.md | 5 ++++- version.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 324b35ba8e9..ded4fe274e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [3.6] - TBD +## [3.6] - 2024-09-09 + +See the [release announcement](https://godotengine.org/article/godot-3-6-finally-released) for details. ### Added @@ -2949,6 +2951,7 @@ See the [release announcement](https://godotengine.org/article/maintenance-relea - Only WebAssembly is supported now, since all browsers supporting WebGL 2.0 also support WebAssembly. +[3.6]: https://downloads.tuxfamily.org/godotengine/3.5/Godot_v3.6-stable_changelog_chrono.txt [3.5]: https://downloads.tuxfamily.org/godotengine/3.5/Godot_v3.5-stable_changelog_chrono.txt [3.4]: https://downloads.tuxfamily.org/godotengine/3.4/Godot_v3.4-stable_changelog_chrono.txt [3.3]: https://downloads.tuxfamily.org/godotengine/3.3/Godot_v3.3-stable_changelog_chrono.txt diff --git a/version.py b/version.py index 2a6d0e3d2f2..c27211b1c20 100644 --- a/version.py +++ b/version.py @@ -3,7 +3,7 @@ name = "Godot Engine" major = 3 minor = 6 patch = 0 -status = "rc" +status = "stable" module_config = "" year = 2024 website = "https://godotengine.org"