diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 800156f..d857336 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.24.2" + ".": "1.24.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2398613..52879fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.24.3 (2026-04-23) + +Full Changelog: [v1.24.2...v1.24.3](https://github.com/OneBusAway/python-sdk/compare/v1.24.2...v1.24.3) + +### Chores + +* **internal:** more robust bootstrap script ([17e590e](https://github.com/OneBusAway/python-sdk/commit/17e590e3a735cc9cc5ef3f206c247e70dba7fb08)) + ## 1.24.2 (2026-04-18) Full Changelog: [v1.24.1...v1.24.2](https://github.com/OneBusAway/python-sdk/compare/v1.24.1...v1.24.2) diff --git a/pyproject.toml b/pyproject.toml index 2d97626..9025469 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "onebusaway" -version = "1.24.2" +version = "1.24.3" description = "The official Python library for the onebusaway-sdk API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/scripts/bootstrap b/scripts/bootstrap index b430fee..fe8451e 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/onebusaway/_version.py b/src/onebusaway/_version.py index 64a489f..424256b 100644 --- a/src/onebusaway/_version.py +++ b/src/onebusaway/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "onebusaway" -__version__ = "1.24.2" # x-release-please-version +__version__ = "1.24.3" # x-release-please-version