diff --git a/README.md b/README.md index 0403617f4..fa055c64b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Generally the trunk is pretty stable, but it's not guaranteed. If you're downloa tag: https://github.com/benkeen/generatedata/releases ## Requirements -- PHP 5.3 or later +- PHP 5.3 or any later version of PHP 5. *Doesn't currently support PHP 7.* - MySQL 4.1.3 or later ## How to Install / Documentation @@ -34,6 +34,7 @@ of this script. - Also: [@LaiNathaniel's repo](https://github.com/LaiNathaniel/docker-generatedata) - And [Andy Shinn's instructions](https://github.com/benkeen/generatedata/pull/269) + ### Vagrant There's also a pre-packaged Vagrant solution [found here](https://github.com/benkeen/generatedata-vagrant), courtesy of Daragh Courtney. @@ -78,6 +79,9 @@ In addition to the many fine folk who submit bug reports, a big thanks to the fo ## Changelog +3.2.6 - Apr 17, 2017 +- misc bug fixes: https://github.com/benkeen/generatedata/milestone/20?closed=1 + 3.2.5 - Apr 16, 2016 - bug fixes: https://github.com/benkeen/generatedata/issues?utf8=%E2%9C%93&q=milestone%3A3.2.3+ - thanks for your help, [Conrad Hagemans](https://github.com/conradhagemans)! diff --git a/package.json b/package.json index 8b5314f1a..b776fc998 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "generatedata", - "version": "3.2.5", + "version": "3.2.6", "description": "free, GNU-licensed, random custom data generator for testing software", "main": "gruntfile.js", "directories": { diff --git a/resources/classes/Core.class.php b/resources/classes/Core.class.php index dd86f6e79..4204a4b69 100644 --- a/resources/classes/Core.class.php +++ b/resources/classes/Core.class.php @@ -35,8 +35,8 @@ class Core { private static $apiEnabled = false; // non-overridable settings - private static $version = "3.2.5"; - private static $releaseDate = "2016-04-16"; + private static $version = "3.2.6"; + private static $releaseDate = "2017-04-17"; private static $minimumPHPVersion = "5.3.0"; private static $minimumMySQLVersion = "4.1.3"; private static $settingsFileExists = false;