Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: prefix-dev/setup-pixi@v0.9.3
- uses: prefix-dev/setup-pixi@v0.9.6
with:
pixi-version: v0.71.0
manifest-path: remotestate-py/pyproject.toml
locked: true

Expand Down
6 changes: 6 additions & 0 deletions remotestate-py/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 0.3.1

- Relaxed remotestate Python library dependencies:
- fastapi >=0.136,<1
- uvicorn >=0.46,<1

## Version 0.3.0

- `Store` now accepts any root state value, exposes it through the typed
Expand Down
1,670 changes: 1,073 additions & 597 deletions remotestate-py/pixi.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions remotestate-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "remotestate"
version = "0.3.1.dev0"
version = "0.3.1"
authors = [{name = "forman"}]
description = "Python state, React UI."
readme = "README.md"
Expand All @@ -9,9 +9,9 @@ license = {text = "MIT"}
license-files = ["LICENSE"]
requires-python = ">= 3.12"
dependencies = [
"fastapi>=0.136,<0.137",
"fastapi>=0.136,<1",
"pydantic>=2,<3",
"uvicorn>=0.46,<0.47"
"uvicorn>=0.46,<1"
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
6 changes: 6 additions & 0 deletions remotestate-ts/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 0.3.1

- Relaxed remotestate Python library dependencies:
- fastapi >=0.136,<1
- uvicorn >=0.46,<1

## Version 0.3.0

- Relaxed the shared path grammar so the empty string addresses the root value
Expand Down
4 changes: 2 additions & 2 deletions remotestate-ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion remotestate-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remotestate",
"version": "0.3.1-dev.0",
"version": "0.3.1",
"description": "Python state, React UI.",
"type": "module",
"main": "./dist/remotestate.js",
Expand Down