From 0e74ec5bca1f68f2f8fc49dadd6ba41387ae412b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:15:54 +0000 Subject: [PATCH 1/2] chore(internal): more robust bootstrap script --- scripts/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap b/scripts/bootstrap index 2bb3c94..3a8293a 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -4,7 +4,7 @@ set -e cd "$(dirname "$0")/.." -if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then +if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "${SKIP_BREW:-}" != "1" ] && [ -t 0 ]; then brew bundle check >/dev/null 2>&1 || { echo -n "==> Install Homebrew dependencies? (y/N): " read -r response From 9e7f035072a8aa0e2b8f8b73ec1bdc7773e4a750 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:16:14 +0000 Subject: [PATCH 2/2] release: 0.7.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7ca613..13708fa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 398c34d..eca0caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.7.1 (2026-04-23) + +Full Changelog: [v0.7.0...v0.7.1](https://github.com/cryptechdev/neptune-api-v2-typescript/compare/v0.7.0...v0.7.1) + +### Chores + +* **internal:** more robust bootstrap script ([0e74ec5](https://github.com/cryptechdev/neptune-api-v2-typescript/commit/0e74ec5bca1f68f2f8fc49dadd6ba41387ae412b)) + ## 0.7.0 (2026-04-17) Full Changelog: [v0.6.0...v0.7.0](https://github.com/cryptechdev/neptune-api-v2-typescript/compare/v0.6.0...v0.7.0) diff --git a/package.json b/package.json index 69b5502..a25872f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@neptunefinance/api-v2", - "version": "0.7.0", + "version": "0.7.1", "description": "The official TypeScript library for the Neptune API V2 API", "author": "Neptune API V2 <>", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d9da9f7..5e85c4b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.7.0'; // x-release-please-version +export const VERSION = '0.7.1'; // x-release-please-version