diff --git a/CHANGELOG.md b/CHANGELOG.md index f536d00..6cf79d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 8.3.0 (2023-1-29) + +* **feat:** added `navigationType` support (#210) +* **fix:** run `po` for longtask only once (#215) + ## 8.2.0 (2022-12-30) * **feat:** added ability to provide web-vitals report options diff --git a/README.md b/README.md index 8f34b0f..d46ea30 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ align="left" width="200" alt="Perfume.js logo" /> -# [Perfume.js v8.2.0](http://perfumejs.com) +# [Perfume.js v8.3.0](http://perfumejs.com) [![Current version](https://img.shields.io/github/tag/zizzamia/perfume.js?color=3498DB&label=version)](https://www.npmjs.org/package/perfume.js) [![Test Coverage](https://api.codeclimate.com/v1/badges/f813d2f45b274d93b8c5/test_coverage)](https://codeclimate.com/github/Zizzamia/perfume.js/test_coverage) No dependencies [![Build Status](https://travis-ci.org/Zizzamia/perfume.js.svg?branch=master)](https://travis-ci.org/Zizzamia/perfume.js) [![NPM Downloads](http://img.shields.io/npm/dm/perfume.js.svg)](https://www.npmjs.org/package/perfume.js) [![gzip size](https://img.badgesize.io/https://unpkg.com/perfume.js?compression=gzip&label=JS+gzip+size)](https://unpkg.com/perfume.js) [![brotli size](https://img.badgesize.io/https://unpkg.com/perfume.js?compression=brotli&label=JS+brotli+size)](https://unpkg.com/perfume.js) diff --git a/package.json b/package.json index 31b151f..ddf7931 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "perfume.js", - "version": "8.2.0", + "version": "8.3.0", "description": "Web performance library for measuring all User-centric performance metrics, including the latest Web Vitals.", "keywords": [ "performance", diff --git a/src/perfume.ts b/src/perfume.ts index 1f1cad9..19632ce 100644 --- a/src/perfume.ts +++ b/src/perfume.ts @@ -1,5 +1,5 @@ /** - * Perfume.js v8.2.0 (http://zizzamia.github.io/perfume) + * Perfume.js v8.3.0 (http://zizzamia.github.io/perfume) * Copyright 2022 Leonardo Zizzamia (https://github.com/Zizzamia/perfume.js/graphs/contributors) * Licensed under MIT (https://github.com/Zizzamia/perfume.js/blob/master/LICENSE) * @@ -23,7 +23,7 @@ import { getVitalsScore } from './vitalsScore'; let ntbtTimeoutID = 0; export default class Perfume { - v = '8.2.0'; + v = '8.3.0'; constructor(options: IPerfumeOptions = {}) { // Extend default config with external options