Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Create v0.14.2-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
chappy84 committed Jan 12, 2020
1 parent 277a5e3 commit 60c8fd6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Google Analytics Server Side Changelog
======================================

Version 0.14.2 Beta
-------------------

- Add in ability to update browscap ini file via cron job
- Add in ability to disable auto browscap ini file update per request
- Add in unofficial support for PHP 7.2 - 7.4
- Switch from using $php-errormsg to the error_get_last function, in part for compatibility with more recent PHP versions
- Correct ordering of parameters to implode function in line with requirements for more recent PHP versions
- Switch to using constant keys for default option setup

Version 0.14.1 Beta
-------------------

Expand All @@ -9,7 +19,7 @@ Version 0.14.1 Beta
Version 0.14.0 Beta
-------------------

- Remove DNT header support since the technology has been abandoned (https://github.com/w3c/dnt/commit/5d85d6c3d116b5eb29fddc69352a77d87dfd2310)
- Remove DNT header support since the technology has been abandoned (https://github.com/w3c/dnt/commit/5d85d6c3d116b5eb29fddc69352a77d87dfd2310)

Version 0.12.2 Beta
-------------------
Expand Down
2 changes: 1 addition & 1 deletion Gass/GoogleAnalyticsServerSide.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.1 Beta
* @version 0.14.2 Beta
* @example $gass = new \Gass\GoogleAnalyticsServerSide;
* $gass->setAccount('UA-XXXXXXX-X')
* ->trackPageView();
Expand Down
2 changes: 1 addition & 1 deletion bin/gass-browscap-updater
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if (false !== ($browsCapLocation = ini_get(BrowsCap::OPT_BROWSCAP)) && '' != tri
$options[BrowsCap::OPT_BROWSCAP] = $browsCapLocation;
}

$version = '0.14.1-Beta';
$version = '0.14.2-Beta';

$cliOpts = getopt('s:f:c:vh', array('save-path:', 'ini-filename:', 'cache-filename:', 'version', 'help'));

Expand Down

0 comments on commit 60c8fd6

Please sign in to comment.