Skip to content

Commit 327d382

Browse files
brendanjryanSlokhampagent
authored
chore: release tempo-request@0.1.1 (#310)
Co-authored-by: Slokh <4983318+Slokh@users.noreply.github.com> Co-authored-by: slokh <slokhx@gmail.com> Co-authored-by: Amp <amp@ampcode.com>
1 parent a00c36c commit 327d382

5 files changed

Lines changed: 25 additions & 8 deletions

File tree

.changelog/weak-lions-spin.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,21 @@ jobs:
2828
run: git config --global url."https://x-access-token:${{ secrets.GH_PAT }}@github.com/".insteadOf "https://github.com/"
2929

3030
- uses: tempoxyz/changelogs@aae9b474ba053648354bea3f9b8670cac4c78ba1 # changelogs@0.6.2
31+
id: changelogs
3132
with:
3233
conventional-commit: true
3334
github-token: ${{ secrets.GH_PAT }}
35+
36+
- name: Update Cargo.lock on release PR
37+
if: steps.changelogs.outputs.pullRequestNumber != ''
38+
env:
39+
GH_TOKEN: ${{ secrets.GH_PAT }}
40+
run: |
41+
git fetch origin changelog-release/main
42+
git checkout changelog-release/main
43+
cargo update --workspace
44+
if ! git diff --quiet Cargo.lock; then
45+
git add Cargo.lock
46+
git commit -m "chore: update Cargo.lock"
47+
git push origin changelog-release/main
48+
fi

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## 0.1.1 (2026-03-17)
4+
5+
### Patch Changes
6+
7+
- Simplified optimistic key provisioning by removing the `query_key_status` and `prepare_provisioning_retry` functions, instead retrying directly with `with_key_authorization()` on any error. Added support for merged `WWW-Authenticate` challenges (RFC 9110 §11.6.1) by splitting and selecting the first supported payment method. Fixed `list_channels` to exclude localhost origins and removed the realm-vs-origin validation check.
8+

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tempo-request/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tempo-request"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Make an HTTP request"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)