Skip to content

Commit 70cf438

Browse files
authored
Merge pull request #200 from DataMini/release-please--branches--main--changes--next
release: 5.3.1
2 parents efd6ca6 + c25e6f8 commit 70cf438

7 files changed

Lines changed: 20 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
lint:
1313
name: lint
1414
runs-on: ubuntu-latest
15-
1615
steps:
1716
- uses: actions/checkout@v4
1817

@@ -33,7 +32,6 @@ jobs:
3332
test:
3433
name: test
3534
runs-on: ubuntu-latest
36-
3735
steps:
3836
- uses: actions/checkout@v4
3937

.release-please-manifest.json

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

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 96
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-5f188889fe648ea83d57911900fe61825d9d7d1446fce966ffca7a9bbe2e3079.yml
33
openapi_spec_hash: 42af219a138819686969b60410be0cb6
4-
config_hash: 575ddfb316392e5f7f3c7b7999796a03
4+
config_hash: a572ab842ea60ce13f1d1a1358440cbe

CHANGELOG.md

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

3+
## 5.3.1 (2025-04-10)
4+
5+
Full Changelog: [v5.3.0...v5.3.1](https://github.com/DataMini/asktable-python/compare/v5.3.0...v5.3.1)
6+
7+
### Bug Fixes
8+
9+
* **api:** update default base_url ([85ff425](https://github.com/DataMini/asktable-python/commit/85ff4250da2b704eaae667d2020e0b842214861d))
10+
11+
12+
### Chores
13+
14+
* **internal:** expand CI branch coverage ([7117507](https://github.com/DataMini/asktable-python/commit/7117507899b9a4e10417d3e8588827ca48706b07))
15+
* **internal:** reduce CI branch coverage ([842b93d](https://github.com/DataMini/asktable-python/commit/842b93d52f827e7b1f6ee3f080b3de3f9965fbdf))
16+
317
## 5.3.0 (2025-04-09)
418

519
Full Changelog: [v5.2.0...v5.3.0](https://github.com/DataMini/asktable-python/compare/v5.2.0...v5.3.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 = "5.3.0"
3+
version = "5.3.1"
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
@@ -133,7 +133,7 @@ def __init__(
133133
if base_url is None:
134134
base_url = os.environ.get("ASKTABLE_BASE_URL")
135135
if base_url is None:
136-
base_url = f"https://api.asktable.com/v1"
136+
base_url = f"https://api.asktable.com"
137137

138138
super().__init__(
139139
version=__version__,
@@ -341,7 +341,7 @@ def __init__(
341341
if base_url is None:
342342
base_url = os.environ.get("ASKTABLE_BASE_URL")
343343
if base_url is None:
344-
base_url = f"https://api.asktable.com/v1"
344+
base_url = f"https://api.asktable.com"
345345

346346
super().__init__(
347347
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__ = "5.3.0" # x-release-please-version
4+
__version__ = "5.3.1" # x-release-please-version

0 commit comments

Comments
 (0)