Skip to content

Commit 35af6b1

Browse files
authored
feat(app): update QT to version 2.1.0 (#20031)
1 parent 934ce5b commit 35af6b1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/src/organisms/ODD/QuickTransferFlow/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,3 +189,7 @@ commands
189189
Note that the `designerApplicationData` is not included in the generated Python, therefore, cloning/editing the generated protocol is currently not possible (which is never has been).
190190

191191
You can still generate JSON behind a feature flag.
192+
193+
## Version 2.1.0
194+
195+
Introduction of return tip in robot stack v8.8.0, mirroring return tip support introducted in Protocol Designer 8.6.0: Return an attached pipette tip to the tip rack after aspirating, dispensing, or mixing.

app/src/organisms/ODD/QuickTransferFlow/utils/createQuickTransferFile.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ import type { QuickTransferSummaryState } from '../types'
3636

3737
const uuid: () => string = uuidv1
3838

39+
const QUICK_TRANSFER_VERSION = '2.1.0'
40+
3941
export function createQuickTransferFile(
4042
quickTransferState: QuickTransferSummaryState,
4143
deckConfig: DeckConfiguration,
@@ -277,15 +279,15 @@ export function createQuickTransferPythonFile(
277279
description: `This quick transfer moves liquids from a ${sourceLabwareName} to a ${destinationLabwareName}`,
278280
source: 'Quick Transfer',
279281
// see QuickTransferFlow/README.md for versioning details
280-
version: '2.0.0',
282+
version: QUICK_TRANSFER_VERSION,
281283
category: null,
282284
subcategory: null,
283285
tags: [],
284286
}
285287

286288
const designerApplication = {
287289
name: 'opentrons/quick-transfer',
288-
version: '2.0.0',
290+
version: QUICK_TRANSFER_VERSION,
289291
data: quickTransferState,
290292
}
291293
const stringifiedDesignerApplication = JSON.stringify(designerApplication)

0 commit comments

Comments
 (0)