Skip to content

Commit

Permalink
chore(master): release 0.8.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jerome-benoit committed Oct 27, 2024
1 parent eb35407 commit 13db747
Show file tree
Hide file tree
Showing 5 changed files with 37 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.8.12"
".": "0.8.13"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ 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.8.13](https://github.com/poolifier/tatami-ng/compare/0.8.12...0.8.13) (2024-10-27)


### 🐞 Bug Fixes

* fix throughput samples imputation in corner case ([8de3cc7](https://github.com/poolifier/tatami-ng/commit/8de3cc7805fb7d9df59151a9e163c99053bd3841))


### ✨ Polish

* avoid variable affectation ([eb35407](https://github.com/poolifier/tatami-ng/commit/eb35407a7fdbfa3b034cf72602116299d27f0079))


### 📚 Documentation

* **README.md:** add missing warmupTime options ([356d72d](https://github.com/poolifier/tatami-ng/commit/356d72d01a442d0f6230fdd1680e7d7bd35cd302))


### 🤖 Automation

* **ci:** handle various release type on npm registry ([7cf519d](https://github.com/poolifier/tatami-ng/commit/7cf519d5d0243541c42850673986a8cfd8b9d725))

## [0.8.12](https://github.com/poolifier/tatami-ng/compare/0.8.11...0.8.12) (2024-10-21)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Bun versions >= 1.x are supported.
<script type="module">
import {
...
} from 'https://cdn.jsdelivr.net/npm/[email protected].12/dist/browser/index.js'
} from 'https://cdn.jsdelivr.net/npm/[email protected].13/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.8.12",
"version": "0.8.13",
"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.8.12",
"version": "0.8.13",
"packageManager": "[email protected]",
"bin": {
"tatami": "cli.js"
Expand All @@ -20,15 +20,24 @@
},
"description": "Cross JavaScript runtime benchmarking library and CLI",
"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 13db747

Please sign in to comment.