Skip to content

Commit 2406b5a

Browse files
committed
export fixes
1 parent 1990e5c commit 2406b5a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.9.2 (2025-10-16)
3+
## 1.9.3 (2025-10-16)
44

55
- added `--output-file` argument
66
- added stack level `exports` - pre defined `stack_name`, `stack_env`, `elapsed_time` and user defined

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='stackql-deploy',
13-
version='1.9.2',
13+
version='1.9.3',
1414
description='Model driven resource provisioning and deployment framework using StackQL.',
1515
long_description=readme,
1616
long_description_content_type='text/x-rst',

stackql_deploy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.9.2'
1+
__version__ = '1.9.3'

stackql_deploy/cmd/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def run(self, dry_run, show_queries, on_failure, output_file=None):
339339
f"🔄 using exports query as proxy for post-deploy statecheck "
340340
f"for [{resource['name']}]"
341341
)
342-
is_correct_state, _ = self.check_state_using_exports_proxy(
342+
is_correct_state, exports_result_from_proxy = self.check_state_using_exports_proxy(
343343
resource,
344344
full_context,
345345
exports_query,

0 commit comments

Comments
 (0)