Skip to content

Commit

Permalink
chore: release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia committed Dec 30, 2017
1 parent 9e8cdfa commit 91af0dd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.2.2 (2017-12-29)

### Bug Fixes

* **end:** fixed end() and getDurationByMetric() methods [#9](https://github.com/Zizzamia/perfume.js/issues/9)
* **docs:** Annotate metrics in the DevTools [#10](https://github.com/Zizzamia/perfume.js/issues/10)


## 0.2.1 (2017-12-28)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Perfume.js v0.2.1
# Perfume.js v0.2.2
[![NPM version](https://badge.fury.io/js/perfume.js.svg)](https://www.npmjs.org/package/perfume.js) [![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)

> Perfume is a tiny JavaScript library for measuring Short/Long Script, First Meaningful Paint, TTI (Time to Interactivity), annotating them to the DevTools timeline and reporting the results to Google Analytics.
Expand Down Expand Up @@ -60,7 +60,7 @@ Save the duration and print it out when/how you best desire.
perfume.start('fibonacci');
fibonacci(400);
const duration = this.perfume.end('fibonacci');
perfume.log('Custom logging', duration);
perfume.log('Custom logging', duration); // ⚡️ Perfume.js: Custom logging 0.14 ms
```


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "perfume.js",
"version": "0.2.1",
"version": "0.2.2",
"description": "",
"keywords": [],
"main": "dist/perfume.umd.js",
Expand Down

0 comments on commit 91af0dd

Please sign in to comment.