Skip to content

Commit 9ebd9ab

Browse files
authored
Merge pull request #171 from DataMini/release-please--branches--main--changes--next
release: 4.7.0
2 parents 4cfdd25 + 7f5b01f commit 9ebd9ab

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.6.0"
2+
".": "4.7.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 4.7.0 (2025-03-15)
4+
5+
Full Changelog: [v4.6.0...v4.7.0](https://github.com/DataMini/asktable-python/compare/v4.6.0...v4.7.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([#170](https://github.com/DataMini/asktable-python/issues/170)) ([8a4111d](https://github.com/DataMini/asktable-python/commit/8a4111db0c9fd229e30032ccfbdedd6556d49710))
10+
311
## 4.6.0 (2025-03-15)
412

513
Full Changelog: [v4.5.0...v4.6.0](https://github.com/DataMini/asktable-python/compare/v4.5.0...v4.6.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "asktable"
3-
version = "4.6.0"
3+
version = "4.7.0"
44
description = "The official Python library for the Asktable API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/asktable/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def __init__(
131131
if base_url is None:
132132
base_url = os.environ.get("ASKTABLE_BASE_URL")
133133
if base_url is None:
134-
base_url = f"https://api.asktable.com/v1"
134+
base_url = f"https://api.asktable.com"
135135

136136
super().__init__(
137137
version=__version__,
@@ -337,7 +337,7 @@ def __init__(
337337
if base_url is None:
338338
base_url = os.environ.get("ASKTABLE_BASE_URL")
339339
if base_url is None:
340-
base_url = f"https://api.asktable.com/v1"
340+
base_url = f"https://api.asktable.com"
341341

342342
super().__init__(
343343
version=__version__,

src/asktable/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "asktable"
4-
__version__ = "4.6.0" # x-release-please-version
4+
__version__ = "4.7.0" # x-release-please-version

0 commit comments

Comments
 (0)