From 00a5ce9a03be0db596a2a0159510345c7b92fde6 Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Tue, 13 Mar 2018 13:21:34 +0000 Subject: [PATCH] Preparing for 3.3.0 --- CHANGELOG.md | 14 ++++++++++++++ package.json | 4 ++-- src/const.js | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e4d0ebe..40fe0a530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## Version 3.3.0 - Tetsuo - In Development + +### New Features + +* TextStyle has two new properties: `baselineX` and `baselineY` which allow you to customize the 'magic' value used in calculating the text metrics. + +### Bug Fixes + +### Updates + +* The Text testString has changed from `|MÉqgy` to `|MÉqgy`. + + + ## Version 3.2.1 - 12th March 2018 ### Bug Fixes diff --git a/package.json b/package.json index a0a295b29..6a75ecf23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "phaser", - "version": "3.2.1", - "release": "Kaori", + "version": "3.3.0", + "release": "Tetsuo", "description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.", "author": "Richard Davey (http://www.photonstorm.com)", "logo": "https://raw.github.com/photonstorm/phaser/master/phaser-logo-small.png", diff --git a/src/const.js b/src/const.js index 97eaa60cb..92721fd10 100644 --- a/src/const.js +++ b/src/const.js @@ -13,7 +13,7 @@ var CONST = { * @type {string} * @since 3.0.0 */ - VERSION: '3.2.1', + VERSION: '3.3.0', BlendModes: require('./renderer/BlendModes'),