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.
Files changed (28) hide show
  1. {struai-1.0.2 → struai-1.0.4}/.github/workflows/release.yml +4 -0
  2. {struai-1.0.2 → struai-1.0.4}/CHANGELOG.md +21 -0
  3. {struai-1.0.2 → struai-1.0.4}/PKG-INFO +1 -1
  4. {struai-1.0.2 → struai-1.0.4}/js/package.json +1 -1
  5. {struai-1.0.2 → struai-1.0.4}/pyproject.toml +1 -1
  6. {struai-1.0.2 → struai-1.0.4}/src/struai/_version.py +1 -1
  7. {struai-1.0.2 → struai-1.0.4}/.github/workflows/ci.yml +0 -0
  8. {struai-1.0.2 → struai-1.0.4}/.gitignore +0 -0
  9. {struai-1.0.2 → struai-1.0.4}/.pre-commit-config.yaml +0 -0
  10. {struai-1.0.2 → struai-1.0.4}/README.md +0 -0
  11. {struai-1.0.2 → struai-1.0.4}/js/.gitignore +0 -0
  12. {struai-1.0.2 → struai-1.0.4}/js/README.md +0 -0
  13. {struai-1.0.2 → struai-1.0.4}/js/src/index.ts +0 -0
  14. {struai-1.0.2 → struai-1.0.4}/js/tsconfig.json +0 -0
  15. {struai-1.0.2 → struai-1.0.4}/src/struai/__init__.py +0 -0
  16. {struai-1.0.2 → struai-1.0.4}/src/struai/_base.py +0 -0
  17. {struai-1.0.2 → struai-1.0.4}/src/struai/_client.py +0 -0
  18. {struai-1.0.2 → struai-1.0.4}/src/struai/_exceptions.py +0 -0
  19. {struai-1.0.2 → struai-1.0.4}/src/struai/models/__init__.py +0 -0
  20. {struai-1.0.2 → struai-1.0.4}/src/struai/models/common.py +0 -0
  21. {struai-1.0.2 → struai-1.0.4}/src/struai/models/drawings.py +0 -0
  22. {struai-1.0.2 → struai-1.0.4}/src/struai/models/entities.py +0 -0
  23. {struai-1.0.2 → struai-1.0.4}/src/struai/models/projects.py +0 -0
  24. {struai-1.0.2 → struai-1.0.4}/src/struai/models/search.py +0 -0
  25. {struai-1.0.2 → struai-1.0.4}/src/struai/py.typed +0 -0
  26. {struai-1.0.2 → struai-1.0.4}/src/struai/resources/__init__.py +0 -0
  27. {struai-1.0.2 → struai-1.0.4}/src/struai/resources/drawings.py +0 -0
  28. {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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: struai
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: StruAI Drawing Analysis SDK - AI-powered construction drawing analysis
5
5
  Project-URL: Homepage, https://struai.com
6
6
  Project-URL: Documentation, https://docs.struai.com/python
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "struai",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "StruAI Drawing Analysis SDK - AI-powered construction drawing analysis",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "struai"
7
- version = "1.0.2"
7
+ version = "1.0.4"
8
8
  description = "StruAI Drawing Analysis SDK - AI-powered construction drawing analysis"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,2 +1,2 @@
1
1
  """Version information."""
2
- __version__ = "1.0.2"
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