diff --git a/CHANGELOG.md b/CHANGELOG.md index 563b70d..a265ee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Google Analytics Server Side Changelog ====================================== +Version 0.14.3 Beta +------------------- + +- Add in documentation for new Browscap ini file update functionality in previous release +- Correct update script help docs + Version 0.14.2 Beta ------------------- diff --git a/Gass/GoogleAnalyticsServerSide.php b/Gass/GoogleAnalyticsServerSide.php index 4ba866a..c449185 100644 --- a/Gass/GoogleAnalyticsServerSide.php +++ b/Gass/GoogleAnalyticsServerSide.php @@ -22,7 +22,7 @@ * @copyright Copyright (c) 2011-2020 Tom Chapman (http://tom-chapman.uk/) * @license BSD 3-clause "New" or "Revised" License * @link http://github.com/chappy84/google-analytics-server-side - * @version 0.14.2 Beta + * @version 0.14.3 Beta * @example $gass = new \Gass\GoogleAnalyticsServerSide; * $gass->setAccount('UA-XXXXXXX-X') * ->trackPageView(); diff --git a/bin/gass-browscap-updater b/bin/gass-browscap-updater index a09cdd4..4d58829 100755 --- a/bin/gass-browscap-updater +++ b/bin/gass-browscap-updater @@ -57,7 +57,7 @@ if (false !== ($browsCapLocation = ini_get(BrowsCap::OPT_BROWSCAP)) && '' != tri $options[BrowsCap::OPT_BROWSCAP] = $browsCapLocation; } -$version = '0.14.2-Beta'; +$version = '0.14.3-Beta'; $cliOpts = getopt('s:f:c:vh', array('save-path:', 'ini-filename:', 'cache-filename:', 'version', 'help'));