From 27d1551ba3a8c833eb71f7d403a88c9bf42706c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 12 Jul 2024 14:12:55 +0200 Subject: [PATCH] chore(master): release 0.5.4 --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 2 +- jsr.json | 2 +- package.json | 15 ++++++++++++--- 5 files changed, 22 insertions(+), 6 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index d9d5699..8d9c233 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.3" + ".": "0.5.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf25b7..c1a382e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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.4](https://github.com/poolifier/tatami-ng/compare/0.5.3...0.5.4) (2024-07-12) + + +### ✨ Polish + +* add scripts for CLI binary generation ([82c15f5](https://github.com/poolifier/tatami-ng/commit/82c15f53af74ac3ba4423098d4923db6842371d5)) + ## [0.5.3](https://github.com/poolifier/tatami-ng/compare/0.5.2...0.5.3) (2024-07-11) diff --git a/README.md b/README.md index 276879d..93e3c5c 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Bun versions >= 1.x are supported. ``` diff --git a/jsr.json b/jsr.json index 4aba9c9..69f9570 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@poolifier/tatami-ng", - "version": "0.5.3", + "version": "0.5.4", "exports": "./src/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 2174592..99d4820 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "tatami-ng", "type": "module", "license": "MIT", - "version": "0.5.3", + "version": "0.5.4", "packageManager": "bun@1.1.18", "bin": { "tatami": "cli.js" @@ -18,7 +18,13 @@ }, "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" }, @@ -26,7 +32,10 @@ "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",