diff --git a/CHANGELOG.md b/CHANGELOG.md index 51e190fd..64396981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,13 @@ This document lists the changes between each minor and patch versions. For changes between major versions, see the [Upgrade Reference](/docs/upgrading.md) +### 2.0.3 (2017-02-24) + +- Fix incorrect package version. + ### 2.0.2 (2017-02-23) -- Fix errors accessing localStorage in some browsers. +- Fix errors accessing localStorage in some browsers (#145). ### 2.0.1 (2017-02-06) diff --git a/lib/constants.js b/lib/constants.js index 404ef6e7..1b868067 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -15,7 +15,7 @@ */ -export const VERSION = '2.0.1'; +export const VERSION = '2.0.3'; export const DEV_ID = 'i5iSjo'; export const VERSION_PARAM = '_av'; diff --git a/package.json b/package.json index 0e7b2f12..3a2426fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "autotrack", - "version": "2.0.1", + "version": "2.0.3", "description": "Automatic and enhanced Google Analytics tracking for common user interactions on the web", "main": "lib", "bin": "./bin/autotrack",