From da9716b96d79b07b5327adf85b77770aee8d814a Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Sat, 31 Mar 2018 12:27:02 +0200 Subject: [PATCH] Update version number and changelog --- changes.txt | 7 +++++-- extra/appveyor/appveyor.yml | 2 +- platform/unix/configure.ac | 2 +- platform/unix/love.6 | 6 +++--- platform/xcode/ios/love-ios.plist | 2 +- platform/xcode/macosx/liblove-macosx.plist | 2 +- platform/xcode/macosx/love-macosx.plist | 2 +- src/common/version.h | 6 +++--- 8 files changed, 16 insertions(+), 13 deletions(-) diff --git a/changes.txt b/changes.txt index 2f62dcc1c..4e360129e 100644 --- a/changes.txt +++ b/changes.txt @@ -1,7 +1,7 @@ -LOVE 0.11.0 [] +LOVE 11.0 [Mysterious Mysteries] -------------- -Released: N/A +Released: 2018-04-01 * Added Object:release. * Added Data:clone. @@ -78,6 +78,7 @@ Released: N/A * Added deprecation warnings, on by default for non-fused games. * Added love.filesystem.getInfo. * Added 'drawcallsbatched' to love.graphics.getStats. + * Added support for header-less DEFLATE to love.data.compress/decompress. * Deprecated love.filesystem.exists / isFile / isDirectory / isSymlink / getLastModified / getSize (use getInfo instead). * Deprecated love.math.compress / decompress (use love.data.compress / decompress instead). @@ -143,6 +144,8 @@ Released: N/A * Updated the default error handler to allow copying the error to the clipboard when the user decides to do so. * Updated love.filesystem.setRequirePath to support multiple template '?' characters in each path. * Updated luasocket to version 3.0rc1. + * Updated love.joystick.loadGamepadMappings so it doesn't error when given an empty string. + * Updated love.joystick.setGamepadMapping to use the controller's name for the new mapping when possible. * Fixed error in default error handler when the error message contains non UTF-8 bytes. * Fixed a memory leak when sending love objects to threads which never load that object's module. diff --git a/extra/appveyor/appveyor.yml b/extra/appveyor/appveyor.yml index 6849f338d..131e165a8 100644 --- a/extra/appveyor/appveyor.yml +++ b/extra/appveyor/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.11.0.{build} +version: 11.0.{build} image: Visual Studio 2013 diff --git a/platform/unix/configure.ac b/platform/unix/configure.ac index 9f730981c..dca7e9530 100644 --- a/platform/unix/configure.ac +++ b/platform/unix/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([love], [0.11.0]) +AC_INIT([love], [11.0]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR([platform/unix]) AC_CONFIG_MACRO_DIR([platform/unix/m4]) diff --git a/platform/unix/love.6 b/platform/unix/love.6 index 3cbfd4e1b..20f7dfe38 100644 --- a/platform/unix/love.6 +++ b/platform/unix/love.6 @@ -1,5 +1,5 @@ .\" (c) 2008-2011 Miriam Ruiz -.\" (c) 2013 Bart van Strien +.\" (c) 2013-2018 Bart van Strien .\" .\" This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damagesarising from the use of this software. .\" @@ -10,9 +10,9 @@ .\" 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. .\" .\" 3. This notice may not be removed or altered from any source distribution. -.Dd December 23, 2015 +.Dd March 31, 2018 .Dt LOVE 6 -.Os LÖVE 0.10.0 +.Os LÖVE 11.0 .Sh NAME .Nm love .Nd 2D game development framework diff --git a/platform/xcode/ios/love-ios.plist b/platform/xcode/ios/love-ios.plist index ea43d5e9e..997fa8d81 100644 --- a/platform/xcode/ios/love-ios.plist +++ b/platform/xcode/ios/love-ios.plist @@ -40,7 +40,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.11.0 + 11.0 CFBundleSignature ???? CFBundleVersion diff --git a/platform/xcode/macosx/liblove-macosx.plist b/platform/xcode/macosx/liblove-macosx.plist index d6822def9..4491a5239 100644 --- a/platform/xcode/macosx/liblove-macosx.plist +++ b/platform/xcode/macosx/liblove-macosx.plist @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.11.0 + 11.0 CFBundleSignature LoVe NSPrincipalClass diff --git a/platform/xcode/macosx/love-macosx.plist b/platform/xcode/macosx/love-macosx.plist index 44314b7f5..be2b6b165 100644 --- a/platform/xcode/macosx/love-macosx.plist +++ b/platform/xcode/macosx/love-macosx.plist @@ -62,7 +62,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.11.0 + 11.0 CFBundleSignature LoVe LSApplicationCategoryType diff --git a/src/common/version.h b/src/common/version.h index 90468f05f..f34d3fa04 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -25,9 +25,9 @@ namespace love { // Version stuff. -#define LOVE_VERSION_STRING "0.11.0" -static const int VERSION_MAJOR = 0; -static const int VERSION_MINOR = 11; +#define LOVE_VERSION_STRING "11.0" +static const int VERSION_MAJOR = 11; +static const int VERSION_MINOR = 0; static const int VERSION_REV = 0; static const char *VERSION = LOVE_VERSION_STRING; static const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };