This commit is contained in:
Jarred Sumner
2025-09-14 18:48:26 -07:00
parent 6bafe2602e
commit 6397654e22
3 changed files with 3 additions and 3 deletions

2
LATEST
View File

@@ -1 +1 @@
1.2.21
1.2.22

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "bun",
"version": "1.2.22",
"version": "1.2.23",
"workspaces": [
"./packages/bun-types",
"./packages/@types/bun"

View File

@@ -117,7 +117,7 @@ async function countReactions(issueNumbers: number[], verbose = false): Promise<
}
// Small delay to avoid rate limiting
await Bun.sleep(50);
await Bun.sleep(1);
}
return totalReactions;