Skip to content

Commit

Permalink
chore(master): release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jerome-benoit committed Jul 10, 2024
1 parent 69c1fdc commit 0f1b22a
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.1"
".": "0.5.2"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.2](https://github.com/poolifier/tatami-ng/compare/0.5.1...0.5.2) (2024-07-10)


### 🚀 Features

* allow to specify the number of warmup runs ([9f29086](https://github.com/poolifier/tatami-ng/commit/9f2908640bf9112f59908738795b9f7d4e2c468b))
* **cli:** allow to execute custom commands at benchmarking steps ([69c1fdc](https://github.com/poolifier/tatami-ng/commit/69c1fdc52d3c2818520d124014dc0ef48a9cff0c))


### ✨ Polish

* cleanup empty function usage ([007345d](https://github.com/poolifier/tatami-ng/commit/007345da0f00e0a39aa948e4e1a7ad96c3c71e3c))

## [0.5.1](https://github.com/poolifier/tatami-ng/compare/0.5.0...0.5.1) (2024-07-09)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Bun versions >= 1.x are supported.
<script type="module">
import {
...
} from 'https://cdn.jsdelivr.net/npm/[email protected].1/dist/browser/index.js'
} from 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/browser/index.js'
</script>
```

Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@poolifier/tatami-ng",
"version": "0.5.1",
"version": "0.5.2",
"exports": "./src/index.js",
"publish": {
"include": [
Expand Down
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "tatami-ng",
"type": "module",
"license": "MIT",
"version": "0.5.1",
"version": "0.5.2",
"packageManager": "[email protected]",
"bin": {
"tatami": "cli.js"
Expand All @@ -18,15 +18,24 @@
},
"description": "cross javascript runtime benchmarking library",
"homepage": "https://github.com/poolifier/tatami-ng#readme",
"keywords": ["benchmark", "browser", "bun", "deno", "node"],
"keywords": [
"benchmark",
"browser",
"bun",
"deno",
"node"
],
"bugs": {
"url": "https://github.com/poolifier/tatami-ng/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poolifier/tatami-ng.git"
},
"files": ["src", "dist"],
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "bun prepare.ts",
"format": "biome format . --write",
Expand Down

0 comments on commit 0f1b22a

Please sign in to comment.