From 80786dadafcc16b93fd3fc2aa2cb950031bbb165 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 7 Mar 2026 07:15:10 -0800 Subject: [PATCH 1/2] Release 0.5a3 Pin to httpx<1.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e1cdbf7..7a3a633 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dclient" -version = "0.5a2" +version = "0.5a3" description = "A client CLI utility for Datasette instances" readme = "README.md" authors = [{name = "Simon Willison"}] @@ -9,7 +9,7 @@ requires-python = ">=3.10" dependencies = [ "click", "click-default-group", - "httpx", + "httpx<1.0", "sqlite-utils", ] From f6cbf95b01d9cd9f1313bc50d5f1a90b3305e0b5 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 23 Jun 2026 16:51:17 -0700 Subject: [PATCH 2/2] Upgrade to actions/checkout@v7 --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 967ae82..741bc9e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: matrix: python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: @@ -34,7 +34,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea123b5..6092103 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: matrix: python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: