diff options
| -rw-r--r-- | misc/dist/linux/godot.6 | 2 | ||||
| -rwxr-xr-x | misc/dist/osx_tools.app/Contents/Info.plist | 4 | ||||
| -rw-r--r-- | version.py | 6 | 
3 files changed, 6 insertions, 6 deletions
| diff --git a/misc/dist/linux/godot.6 b/misc/dist/linux/godot.6 index 80dcfc80b3..00d19c5178 100644 --- a/misc/dist/linux/godot.6 +++ b/misc/dist/linux/godot.6 @@ -1,4 +1,4 @@ -.TH GODOT "6" "January 2020" "godot 3.2" "Games" +.TH GODOT "6" "January 2020" "godot 4.0" "Games"  .SH NAME  godot \- multi\-platform 2D and 3D game engine with a feature\-rich editor  .SH SYNOPSIS diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist index 46d2d4cb6e..46550ba6c7 100755 --- a/misc/dist/osx_tools.app/Contents/Info.plist +++ b/misc/dist/osx_tools.app/Contents/Info.plist @@ -19,11 +19,11 @@  	<key>CFBundlePackageType</key>  	<string>APPL</string>  	<key>CFBundleShortVersionString</key> -	<string>3.2</string> +	<string>4.0</string>  	<key>CFBundleSignature</key>  	<string>godot</string>  	<key>CFBundleVersion</key> -	<string>3.2</string> +	<string>4.0</string>  	<key>NSMicrophoneUsageDescription</key>  	<string>Microphone access is required to capture audio.</string>  	<key>NSCameraUsageDescription</key> diff --git a/version.py b/version.py index 47af88c676..2a6a9c0a28 100644 --- a/version.py +++ b/version.py @@ -1,9 +1,9 @@  short_name = "godot"  name = "Godot Engine" -major = 3 -minor = 2 +major = 4 +minor = 0  patch = 0 -status = "stable" +status = "dev"  module_config = ""  year = 2020  website = "https://godotengine.org" |