diff --git a/CHANGELOG.md b/CHANGELOG.md index 4861672..ef5ddce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,20 +6,40 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). We follow the format used by [Open Telemetry](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md). -## Unreleased +## Version 2.1.0 (2023-08-30) + +### Added + +- Use vite/esbuild to compile libraries +- Enabled coverage for tests +- Increase test coverage for reporter.ts +- Export ESM version of the library +- Export types + +### Changed + +- Use React 18 features in end to end tests + +### Refactor + +- Replaced `npm` with `pnpm` +- Replaced `jest` ecosystem with `vitest` +- Replace `nock`/`isomorphic-fetch` with `msw` ## Version 2.0.0 (2023-07-13) ### Changed + - Remove usages of `data-ts-auction` as that only works when using API v1 - When specifying purchases, the price must now be specified as a float in the marketplace currency (i.e. USD) instead of cents. - ### Refactor + - Use [Events API v2](https://docs.topsort.com/reference/reportevents-2) ## Version 1.0.6 (2023-07-13) ### Fixed + - Fix parsing of user cookie ([#182](https://github.com/Topsort/analytics.js/pull/182)) diff --git a/package.json b/package.json index ff5f2b8..2950639 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@topsort/analytics.js", - "version": "2.0.0", + "version": "2.1.0", "description": "JS library to automatically report events to Topsort's Analytics", "main": "dist/ts.js", "type": "module",