Skip to content

Commit 9bfd6a8

Browse files
committed
v1.1.2
1 parent 4831f24 commit 9bfd6a8

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88
jobs:
99
publish:
1010
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
id-token: write
1114
steps:
12-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1316
- uses: actions/setup-python@v5
1417
with:
1518
python-version: "3.13"
16-
- run: pip install build twine
19+
- run: pip install build
1720
- run: python -m build
18-
- run: twine upload dist/*
19-
env:
20-
TWINE_USERNAME: __token__
21-
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
21+
- uses: pypa/gh-action-pypi-publish@release/v1

iterationlayer/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,7 @@ class LayoutLayer(_LayoutLayerRequired, total=False):
656656
dimensions: Dimensions
657657
opacity: int
658658
background_color: str
659+
background_layers: list["Layer"]
659660
padding: int
660661
padding_top: int
661662
padding_right: int

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "iterationlayer"
7-
version = "1.1.0"
7+
version = "1.1.2"
88
description = "Official Python SDK for the Iteration Layer API"
99
readme = "README.md"
1010
license = "MIT"

0 commit comments

Comments
 (0)