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/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 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