Skip to content

Commit f3a5888

Browse files
chore(release): 0.2.0 (#113)
Signed-off-by: client-software-ci <[email protected]> Signed-off-by: Marshall Jackson <[email protected]>
1 parent e9e9e34 commit f3a5888

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 0.2.0 (2024-09-04)
2+
3+
### BREAKING CHANGES
4+
* replace submitter GUI with bundle GUI submit (#93) ([`05b74b3`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/05b74b3844190de7732ff7cbaf3b87fa3d24168a))
5+
6+
### Features
7+
* speedup KSP extraction on Windows (#112) ([`e9e9e34`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/e9e9e3412007f83489994cc87a1041edb3cebb01))
8+
* support ksp bundling (#97) ([`df141f5`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/df141f5cf821fb455896eea888e0a5075f4e6749))
9+
* submitter prompts user to save changes before submitting (#101) ([`3d56b47`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/3d56b4759b6763fea5f498fe916d78673351310f))
10+
11+
### Bug Fixes
12+
* add default values for conda packages and channels (#110) ([`d3f3adb`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/d3f3adb90798edbc7d3b7a94c06f45bc9b93ece5))
13+
* remove submitter dependencies that aren&#39;t available in KeyShot Python (#111) ([`98db5ec`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/98db5ecd40f20f6748f0c9b36cbc22a1061dac28))
14+
* do not show Success status when submission is cancelled (#102) ([`fc92d0e`](https://github.com/aws-deadline/deadline-cloud-for-keyshot/commit/fc92d0e3a33db929bd9d8f8814ecfc48827f5998))
15+
116
## 0.1.3 (2024-06-19)
217

318

src/deadline/keyshot_submitter/Submit to AWS Deadline Cloud.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTHOR AWS
2-
# VERSION 0.1.3
2+
# VERSION 0.2.0
33
# Submit to AWS Deadline Cloud
44

55
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
@@ -512,7 +512,7 @@ def main(lux):
512512
# Add default values for Conda
513513
major_version, minor_version = lux.getKeyShotDisplayVersion()
514514
settings.parameter_values.append(
515-
{"name": "CondaPackages", "value": f"keyshot={major_version}.* keyshot-openjd=0.1.*"}
515+
{"name": "CondaPackages", "value": f"keyshot={major_version}.* keyshot-openjd=0.2.*"}
516516
)
517517
settings.parameter_values.append({"name": "CondaChannels", "value": "deadline-cloud"})
518518

0 commit comments

Comments
 (0)