Skip to content

Commit 71207e0

Browse files
committed
Fix version
1 parent c1c7991 commit 71207e0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/__tests__/commands/version.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ describe("version", () => {
88
stdout.start();
99
await oclif.run(["version"]);
1010
stdout.stop();
11-
expect(stdout.output).toContain("Version: 8");
11+
expect(stdout.output).toMatch(/Version: \d/);
1212
});
1313
});

src/telemetry/segment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ function withTypewriterContext<P extends Record<string, any>, T extends TrackMes
372372
...(message.context || {}),
373373
typewriter: {
374374
language: 'typescript',
375-
version: '8.1.0',
375+
version: '9.0.0',
376376
},
377377
},
378378
}

0 commit comments

Comments
 (0)