diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 44389a3..d729fd9 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.15" + ".": "0.4.16" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f665d9f..cd2aae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,41 @@ 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.4.16](https://github.com/poolifier/tatami-ng/compare/0.4.15...0.4.16) (2024-07-04) + + +### 🚀 Features + +* switch to release-please release manager ([234f244](https://github.com/poolifier/tatami-ng/commit/234f244a679656c69c9b8b1a6bdab55c10a664c3)) + + +### 📚 Documentation + +* refine README.md badges ([8fc2a37](https://github.com/poolifier/tatami-ng/commit/8fc2a373ff685dd59acd70be64b6b5c116eb8cb6)) + + +### ✨ Polish + +* **ci:** cleanup GH action ([ee255e7](https://github.com/poolifier/tatami-ng/commit/ee255e740160c9b09ceab165b8bfe89895d29b5e)) +* refine GH action setup-bun configuration ([25382b6](https://github.com/poolifier/tatami-ng/commit/25382b696e162e8e35df37f033eefc53a859e40f)) +* switch biome.js configuration to standard.js style ([5d9754a](https://github.com/poolifier/tatami-ng/commit/5d9754a7a395cecbd5e57080b4cf9b5e8b07f589)) + + +### 🤖 Automation + +* **ci:** add autofix GH action ([736c4f8](https://github.com/poolifier/tatami-ng/commit/736c4f839f1c75a36313922fe5ea8601ff181f7d)) +* **ci:** fix setup-bun configuration ([a12a9d0](https://github.com/poolifier/tatami-ng/commit/a12a9d0dca53784c115f0327d29828da7c532831)) +* **ci:** really ensure tag version is not prefixed with 'v' ([7dbb1be](https://github.com/poolifier/tatami-ng/commit/7dbb1be94f81c280acefd9c8b4ff14c17ec22584)) +* **ci:** remove v prefix in release-please tag ([1aa36d1](https://github.com/poolifier/tatami-ng/commit/1aa36d13df2375c3367f56b4592bd65751f3a42d)) +* **deps-dev:** apply updates ([51d9eea](https://github.com/poolifier/tatami-ng/commit/51d9eeafdd4fbb4427d053d067fb90300ce9a02e)) +* **deps-dev:** apply updates ([e8d8302](https://github.com/poolifier/tatami-ng/commit/e8d8302f3ea0d8742419160cd75e9051288a39fe)) +* **deps-dev:** apply updates ([8603c48](https://github.com/poolifier/tatami-ng/commit/8603c484dc691ac55660293880711e2d22aa03aa)) +* **deps-dev:** apply updates ([0a7ace0](https://github.com/poolifier/tatami-ng/commit/0a7ace0fbd8fd9fe1d65fc15103106e726d67a3a)) +* **deps-dev:** apply updates ([0785cfc](https://github.com/poolifier/tatami-ng/commit/0785cfcc6fa5e26056a10dd21fed3cebf0a1de3e)) +* **deps-dev:** apply updates ([1f3034e](https://github.com/poolifier/tatami-ng/commit/1f3034e8f6a37f67225c111982849e4384af0392)) +* **deps-dev:** apply updates ([b9bb1e0](https://github.com/poolifier/tatami-ng/commit/b9bb1e0de4e816cf385b9e759a45c13406171306)) +* **deps:** bump oven-sh/setup-bun from 1 to 2 ([9c3fe1b](https://github.com/poolifier/tatami-ng/commit/9c3fe1b62ebe0eb05b3704fe1a5dc44b2347615c)) + ## [0.4.15] - 2024-06-16 ### Fixed diff --git a/README.md b/README.md index a1ceed4..34c917e 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Bun versions >= 1.x are supported. ``` diff --git a/jsr.json b/jsr.json index 34affa1..fb28eca 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.4.15", + "version": "0.4.16", "exports": "./src/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 0e59ea3..05e4ec2 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "tatami-ng", "type": "module", "license": "MIT", - "version": "0.4.15", + "version": "0.4.16", "packageManager": "bun@1.1.18", "types": "./src/index.d.ts", "main": "./src/index.js", @@ -15,7 +15,13 @@ }, "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" }, @@ -23,7 +29,10 @@ "type": "git", "url": "git+https://github.com/poolifier/tatami-ng.git" }, - "files": ["src", "dist"], + "files": [ + "src", + "dist" + ], "scripts": { "prepare": "bun run prepare.ts", "format": "biome format . --write",