Skip to content

Commit

Permalink
creates version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dorzey committed Jul 6, 2020
1 parent 8170225 commit 589cf6b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
run: npm test
- name: Publish
if: success() && startsWith( github.ref, 'refs/tags/releases/') && matrix.os == 'ubuntu-latest'
if: success() && startsWith( github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest'
run: npm run deploy
env:
VSCE_PAT: $
VSCE_PAT: ${{ secrets.VSCE_PAT }}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [Unreleased]

## [0.0.2] - 2020-07-06

### Added

- [#2](https://github.com/dorzey/vscode-sqlfluff/pull/2) support for jinja-sql

### Changed

- [#1](https://github.com/dorzey/vscode-sqlfluff/pull/1) linter.run default switched to onType

## [0.0.1] - 2020-07-06

### Initial release
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 15 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
{
"name": "vscode-sqlfluff",
"displayName": "sqlfluff",
"description": "",
"description": "An extension to use the sqlfluff linter in vscode",
"publisher": "dorzey",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE",
"icon": "images/icon.png",
"homepage": "https://github.com/dorzey/vscode-sqlfluff",
"repository": {
"type": "git",
"url": "https://github.com/dorzey/vscode-sqlfluff.git"
},
"bugs": {
"url": "https://github.com/dorzey/vscode-sqlfluff/issues"
},
"version": "0.0.2",
"engines": {
"vscode": "^1.46.0"
},
Expand All @@ -18,12 +28,12 @@
"contributes": {
"configuration": {
"properties": {
"ruby.linter.executablePath": {
"sql.linter.executablePath": {
"type": "string",
"default": "sqlfluff",
"description": "Points to the sqlfluff exectuable."
},
"ruby.linter.run": {
"sql.linter.run": {
"type": "string",
"enum": [
"onSave",
Expand All @@ -44,7 +54,7 @@
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish --yarn"
"deploy": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.1",
Expand Down

0 comments on commit 589cf6b

Please sign in to comment.