Skip to content

Commit 243e139

Browse files
committed
chore: release v9.0.0-rc.3 ⚡
1 parent d8ee7a4 commit 243e139

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 9.0.0 ()
4+
5+
RC. IN-PROGRESS
6+
37
## 8.4.0 (2023-2-3)
48

59
* **fix:** disable `requestIdleCallback` for CLS and INP reports (#212)

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
align="left" width="200" alt="Perfume.js logo" />
44
</a>
55

6-
# [Perfume.js v9.0.0-rc.2](http://perfumejs.com)
6+
# [Perfume.js v9.0.0-rc.3](http://perfumejs.com)
77

88
[![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) <img alt="No dependencies" src="https://img.shields.io/badge/dependencies-none-27ae60.svg"> [![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)
99

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "perfume.js",
3-
"version": "9.0.0-rc.2",
3+
"version": "9.0.0-rc.3",
44
"description": "Web performance library for measuring all User-centric performance metrics, including the latest Web Vitals.",
55
"keywords": [
66
"performance",

Diff for: src/perfume.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Perfume.js v9.0.0-rc.2 (http://zizzamia.github.io/perfume)
2+
* Perfume.js v9.0.0-rc.3 (http://zizzamia.github.io/perfume)
33
* Copyright 2022 Leonardo Zizzamia (https://github.com/Zizzamia/perfume.js/graphs/contributors)
44
* Licensed under MIT (https://github.com/Zizzamia/perfume.js/blob/master/LICENSE)
55
*
@@ -24,7 +24,7 @@ import { setStepsMap } from './steps/setStepsMap';
2424
let ntbtTimeoutID = 0;
2525

2626
class Perfume {
27-
v = '9.0.0-rc.2';
27+
v = '9.0.0-rc.3';
2828

2929
constructor(options: IPerfumeOptions = {}) {
3030
// Extend default config with external options

0 commit comments

Comments
 (0)