Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frigus02 committed Jun 23, 2023
1 parent ac85da3 commit 2a7c6b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [0.3.0] - 2023-06-23

- Update to latest TypeScript version (5.1). Fixes fileExists issue.

## [0.2.0] - 2021-12-22

### Added
Expand All @@ -24,7 +28,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

- Support formatting using pgFormatter.

[unreleased]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.2.0...HEAD
[unreleased]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/frigus02/typescript-sql-tagged-template-plugin/compare/v0.0.16...v0.1.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-sql-tagged-template-plugin",
"version": "0.2.0",
"version": "0.3.0",
"description": "TypeScript language service plugin that adds type checking for sql tagged templates",
"keywords": [
"TypeScript",
Expand Down
2 changes: 1 addition & 1 deletion src/language-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { TypeResolver } from "./type-resolver";
import { flatten } from "./utils";

const diagnosticMessageCodes = [100_000, 100_001, 100_002, 100_003] as const;
type DiagnosticMessageCode = typeof diagnosticMessageCodes[number];
type DiagnosticMessageCode = (typeof diagnosticMessageCodes)[number];

interface DiagnosticMessage {
messageText: (arg: any) => string;
Expand Down

0 comments on commit 2a7c6b9

Please sign in to comment.