diff --git a/CHANGELOG.md b/CHANGELOG.md index b2533fcc6..a8f1156fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ minisphere Changelog ==================== -v4.2.2 - TBD ------------- +v4.2.2 - September 28, 2016 +--------------------------- * Adds a new property, `term.visible` to the `term` module and removes the `.show()` and `.hide()` methods. diff --git a/README.md b/README.md index d3d4dc8a3..0626947c0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Download ======== The latest stable minisphere release at the time of this writing is -**minisphere 4.2.1**, released on Wednesday, September 21, 2016. minisphere +**minisphere 4.2.2**, released on Wednesday, September 28, 2016. minisphere binaries are provided through GitHub, and the latest version is always available for download here: diff --git a/VERSION b/VERSION index fae6e3d04..af8c8ec7c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.1 +4.2.2 diff --git a/docs/sphere2-api.txt b/docs/sphere2-api.txt index 254b0bfce..4db2d3219 100644 --- a/docs/sphere2-api.txt +++ b/docs/sphere2-api.txt @@ -170,7 +170,7 @@ system.name [read-only] system.version [read-only] - The version number of the engine; e.g. "4.2.1". + The version number of the engine; e.g. "4.2.2". system.apiVersion [read-only] system.apiLevel [read-only] diff --git a/manpages/cell.1 b/manpages/cell.1 index 5291ed772..33dce9ecd 100644 --- a/manpages/cell.1 +++ b/manpages/cell.1 @@ -1,4 +1,4 @@ -.TH CELL 1 "2016-09-21" "minisphere-4.2.1" "minisphere Game Development Kit" +.TH CELL 1 "2016-09-28" "minisphere-4.2.2" "minisphere Game Development Kit" .SH NAME cell \- Sphere v2 game compiler and packager .SH SYNOPSIS diff --git a/manpages/minisphere.1 b/manpages/minisphere.1 index f936e1d32..f2145ced4 100644 --- a/manpages/minisphere.1 +++ b/manpages/minisphere.1 @@ -1,4 +1,4 @@ -.TH MINISPHERE 1 "2016-09-21" "minisphere-4.2.1" "minisphere JS Game Engine" +.TH MINISPHERE 1 "2016-09-28" "minisphere-4.2.2" "minisphere JS Game Engine" .SH NAME minisphere \- lightweight JavaScript-powered game engine .SH SYNOPSIS diff --git a/manpages/spherun.1 b/manpages/spherun.1 index 4ef31ce8a..a9ab2f2ee 100644 --- a/manpages/spherun.1 +++ b/manpages/spherun.1 @@ -1,4 +1,4 @@ -.TH SPHERUN 1 "2016-09-21" "minisphere-4.2.1" "minisphere Game Development Kit" +.TH SPHERUN 1 "2016-09-28" "minisphere-4.2.2" "minisphere Game Development Kit" .SH NAME spherun \- run a Sphere game in a dev-friendly environment .SH SYNOPSIS diff --git a/manpages/ssj.1 b/manpages/ssj.1 index 4c42ae977..ad8096b6a 100644 --- a/manpages/ssj.1 +++ b/manpages/ssj.1 @@ -1,4 +1,4 @@ -.TH SSJ 1 "2016-09-21" "minisphere-4.2.1" "minisphere Game Development Kit" +.TH SSJ 1 "2016-09-28" "minisphere-4.2.2" "minisphere Game Development Kit" .SH NAME ssj \- a JavaScript CLI debugger for minisphere .SH SYNOPSIS diff --git a/msvs/compiler.rc b/msvs/compiler.rc index d96d89aeb..04690b3a7 100644 Binary files a/msvs/compiler.rc and b/msvs/compiler.rc differ diff --git a/msvs/debugger.rc b/msvs/debugger.rc index 064031fd7..c7fdbb4c4 100644 Binary files a/msvs/debugger.rc and b/msvs/debugger.rc differ diff --git a/msvs/engine.rc b/msvs/engine.rc index 958bac984..9740acce1 100644 Binary files a/msvs/engine.rc and b/msvs/engine.rc differ diff --git a/setup/minisphere.iss b/setup/minisphere.iss index fea258dd5..78d719d72 100644 --- a/setup/minisphere.iss +++ b/setup/minisphere.iss @@ -9,7 +9,7 @@ #define AppName "minisphere" #define AppPublisher "Fat Cerberus" #define AppVersion2 "4.2" -#define AppVersion3 "4.2.1" +#define AppVersion3 "4.2.2" ; to create a bundle with Sphere Studio, copy the Sphere Studio binaries ; into msw/ide/ before building the installer. diff --git a/src/debian/changelog b/src/debian/changelog index 9c17c8c14..18ccfcbb2 100644 --- a/src/debian/changelog +++ b/src/debian/changelog @@ -1,3 +1,12 @@ +minisphere (4.2.2) trusty; urgency=low + + * Adds a new property, `term.visible` to the `term` module and removes the + `.show()` and `.hide()` methods. + * Fixes the `struct` and `logger` modules, which were unintentionally broken by + the changes in 4.2.0. + + -- Bruce Pascoe Wed, 28 Sep 2016 00:00:00 -0500 + minisphere (4.2.1) trusty; urgency=low * The `ssj` global is now called `SSJ`, to align with usual JavaScript naming diff --git a/src/plugin/PluginMain.cs b/src/plugin/PluginMain.cs index c1014b5e0..63b3853e9 100644 --- a/src/plugin/PluginMain.cs +++ b/src/plugin/PluginMain.cs @@ -18,7 +18,7 @@ public class PluginMain : IPluginMain public string Name { get; } = "minisphere GDK"; public string Author { get; } = "Fat Cerberus"; public string Description { get; } = "Provides support for the minisphere GDK toolchain."; - public string Version { get; } = "4.2.1"; + public string Version { get; } = "4.2.2"; internal PluginConf Conf { get; private set; } internal int Sessions { get; set; } diff --git a/src/plugin/Properties/AssemblyInfo.cs b/src/plugin/Properties/AssemblyInfo.cs index 610f29e42..b20940019 100644 --- a/src/plugin/Properties/AssemblyInfo.cs +++ b/src/plugin/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.2.1.1603")] -[assembly: AssemblyFileVersion("4.2.1.1603")] +[assembly: AssemblyVersion("4.2.2.1610")] +[assembly: AssemblyFileVersion("4.2.2.1610")] diff --git a/src/shared/version.h b/src/shared/version.h index e1790256b..b9fc470b4 100644 --- a/src/shared/version.h +++ b/src/shared/version.h @@ -2,6 +2,6 @@ #define MINISPHERE__VERSION_H__INCLUDED #define PRODUCT_NAME "minisphere" -#define VERSION_NAME "4.2.1" +#define VERSION_NAME "4.2.2" #endif // MINISPHERE__VERSION_H__INCLUDED