diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1269f909..1eec10e9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.6.0" + ".": "4.7.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 26d3824b..1e8a3e96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.7.0 (2025-03-15) + +Full Changelog: [v4.6.0...v4.7.0](https://github.com/DataMini/asktable-python/compare/v4.6.0...v4.7.0) + +### Features + +* **api:** manual updates ([#170](https://github.com/DataMini/asktable-python/issues/170)) ([8a4111d](https://github.com/DataMini/asktable-python/commit/8a4111db0c9fd229e30032ccfbdedd6556d49710)) + ## 4.6.0 (2025-03-15) Full Changelog: [v4.5.0...v4.6.0](https://github.com/DataMini/asktable-python/compare/v4.5.0...v4.6.0) diff --git a/pyproject.toml b/pyproject.toml index 1deb1146..d772cbb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "asktable" -version = "4.6.0" +version = "4.7.0" description = "The official Python library for the Asktable API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/asktable/_client.py b/src/asktable/_client.py index 1569ca30..0fa09487 100644 --- a/src/asktable/_client.py +++ b/src/asktable/_client.py @@ -131,7 +131,7 @@ def __init__( if base_url is None: base_url = os.environ.get("ASKTABLE_BASE_URL") if base_url is None: - base_url = f"https://api.asktable.com/v1" + base_url = f"https://api.asktable.com" super().__init__( version=__version__, @@ -337,7 +337,7 @@ def __init__( if base_url is None: base_url = os.environ.get("ASKTABLE_BASE_URL") if base_url is None: - base_url = f"https://api.asktable.com/v1" + base_url = f"https://api.asktable.com" super().__init__( version=__version__, diff --git a/src/asktable/_version.py b/src/asktable/_version.py index a25e89c3..f987046f 100644 --- a/src/asktable/_version.py +++ b/src/asktable/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "asktable" -__version__ = "4.6.0" # x-release-please-version +__version__ = "4.7.0" # x-release-please-version