struai 1.0.2__tar.gz → 1.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {struai-1.0.2 → struai-1.0.4}/.github/workflows/release.yml +4 -0
- {struai-1.0.2 → struai-1.0.4}/CHANGELOG.md +21 -0
- {struai-1.0.2 → struai-1.0.4}/PKG-INFO +1 -1
- {struai-1.0.2 → struai-1.0.4}/js/package.json +1 -1
- {struai-1.0.2 → struai-1.0.4}/pyproject.toml +1 -1
- {struai-1.0.2 → struai-1.0.4}/src/struai/_version.py +1 -1
- {struai-1.0.2 → struai-1.0.4}/.github/workflows/ci.yml +0 -0
- {struai-1.0.2 → struai-1.0.4}/.gitignore +0 -0
- {struai-1.0.2 → struai-1.0.4}/.pre-commit-config.yaml +0 -0
- {struai-1.0.2 → struai-1.0.4}/README.md +0 -0
- {struai-1.0.2 → struai-1.0.4}/js/.gitignore +0 -0
- {struai-1.0.2 → struai-1.0.4}/js/README.md +0 -0
- {struai-1.0.2 → struai-1.0.4}/js/src/index.ts +0 -0
- {struai-1.0.2 → struai-1.0.4}/js/tsconfig.json +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/__init__.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/_base.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/_client.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/_exceptions.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/__init__.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/common.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/drawings.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/entities.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/projects.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/models/search.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/py.typed +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/resources/__init__.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/resources/drawings.py +0 -0
- {struai-1.0.2 → struai-1.0.4}/src/struai/resources/projects.py +0 -0
|
@@ -93,6 +93,8 @@ jobs:
|
|
|
93
93
|
|
|
94
94
|
steps:
|
|
95
95
|
- uses: actions/checkout@v4
|
|
96
|
+
with:
|
|
97
|
+
ref: ${{ needs.release.outputs.released == 'true' && format('v{0}', needs.release.outputs.version) || github.ref }}
|
|
96
98
|
|
|
97
99
|
- name: Set up Python
|
|
98
100
|
uses: actions/setup-python@v5
|
|
@@ -120,6 +122,8 @@ jobs:
|
|
|
120
122
|
|
|
121
123
|
steps:
|
|
122
124
|
- uses: actions/checkout@v4
|
|
125
|
+
with:
|
|
126
|
+
ref: ${{ needs.release.outputs.released == 'true' && format('v{0}', needs.release.outputs.version) || github.ref }}
|
|
123
127
|
|
|
124
128
|
- name: Set up Node.js
|
|
125
129
|
uses: actions/setup-node@v4
|
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- version list -->
|
|
4
4
|
|
|
5
|
+
## v1.0.4 (2026-02-04)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **ci**: Checkout release tag for publish jobs
|
|
10
|
+
([`6b78004`](https://github.com/bhoshaga/struai/commit/6b78004629cee3dff309836f7879da417dd69ac9))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## v1.0.3 (2026-02-04)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- Trigger release v1.0.3
|
|
18
|
+
([`a611906`](https://github.com/bhoshaga/struai/commit/a611906590f693d9222b2b95aa2c42830e92c156))
|
|
19
|
+
|
|
20
|
+
### Documentation
|
|
21
|
+
|
|
22
|
+
- Clarify auth and endpoints
|
|
23
|
+
([`9703efe`](https://github.com/bhoshaga/struai/commit/9703efe1354168cb32d3ed6eacea642e22bea593))
|
|
24
|
+
|
|
25
|
+
|
|
5
26
|
## v1.0.2 (2026-02-04)
|
|
6
27
|
|
|
7
28
|
### Bug Fixes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""Version information."""
|
|
2
|
-
__version__ = "1.0.
|
|
2
|
+
__version__ = "1.0.4"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|