Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"bun": "0.0.0"
"bun": "1.0.0"
}
9 changes: 9 additions & 0 deletions bun/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 1.0.0 (2025-09-26)


### Features

* add official bun binding ([#42](https://github.com/ChainSafe/blst-z/issues/42)) ([28391f1](https://github.com/ChainSafe/blst-z/commit/28391f15665e8249a6d0dcba65665cdadcf7066f))
* **build:** use `blst` packaged for zig using zig build system ([#51](https://github.com/ChainSafe/blst-z/issues/51)) ([a36c213](https://github.com/ChainSafe/blst-z/commit/a36c21339225fa7fb1f96b4ddc3e5b0dcca28261))
6 changes: 3 additions & 3 deletions bun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainsafe/blst-bun",
"version": "0.0.0",
"version": "1.0.0",
"module": "src/index.ts",
"type": "module",
"dependencies": {
Expand All @@ -19,13 +19,13 @@
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun ./node_modules/.bin/bun-ffi-z build",
"build": "bun ./node_modules/.bin/bun-ffi-z build",
"prepublishOnly": "bun ./node_modules/.bin/bun-ffi-z prepublish --artifacts artifacts",
"publish": "bun ./node_modules/.bin/bun-ffi-z publish",
"test:unit": "bun test test/unit",
"lint": "biome check",
"lint:fix": "yarn lint --write",
"benchmark": "bun benchmark:files 'test/perf/*.test.ts'",
"benchmark": "bun benchmark:files 'test/perf/*.test.ts'",
"benchmark:files": "bun ./node_modules/.bin/benchmark --config .benchrc.yaml --defaultBranch main"
},
"bun-ffi-z": {
Expand Down