Skip to content

Commit c093c6a

Browse files
committed
[FIX] version: next version is 19.1
The current master will become 19.1, not 19.2 closes #7525 Task: 0 Signed-off-by: Vincent Schippefilt (vsc) <[email protected]>
1 parent e232982 commit c093c6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/o-spreadsheet-engine/src/migrations/migration_steps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ migrationStepRegistry
555555
return data;
556556
},
557557
})
558-
.add("19.2", {
558+
.add("19.1.0", {
559559
migrate(data: WorkbookData): any {
560560
for (const sheet of data.sheets || []) {
561561
for (const figure of sheet.figures || []) {

tests/model/model_import_export.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ test("migrate version 18.5.1: chartId is added to figure data", () => {
781781
expect(model.exportData().sheets[0].figures[0].data.chartId).toBe("someuuid");
782782
});
783783

784-
test("migrate version 19.2: colorScale is changed to a trio of color", () => {
784+
test("migrate version 19.1.0: colorScale is changed to a trio of color", () => {
785785
const data = {
786786
version: "18.5.1",
787787
sheets: [

0 commit comments

Comments
 (0)