Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Apr 28, 2023
1 parent c1c7991 commit 71207e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/commands/version.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ describe("version", () => {
stdout.start();
await oclif.run(["version"]);
stdout.stop();
expect(stdout.output).toContain("Version: 8");
expect(stdout.output).toMatch(/Version: \d/);
});
});
2 changes: 1 addition & 1 deletion src/telemetry/segment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ function withTypewriterContext<P extends Record<string, any>, T extends TrackMes
...(message.context || {}),
typewriter: {
language: 'typescript',
version: '8.1.0',
version: '9.0.0',
},
},
}
Expand Down

0 comments on commit 71207e0

Please sign in to comment.