Skip to content

Commit ac72b0f

Browse files
committed
Added installation instructions
1 parent 1195108 commit ac72b0f

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Change Log
22

3-
All notable changes to the "sqlrunner" extension will be documented in this file.
3+
SQLRunner version is versioned following [semver](https://semver.org). All new
4+
features and stuff go under `Added`, All fixes go under `Fixed`, deprecated
5+
and removed features go under `Deprecated` and `Removed` respectively.
46

57
## [Unreleased]
68

9+
## [0.0.1] - 2020-12-29
10+
711
### Added
812

913
- MySQL connection adapter

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,28 @@ Run SQL queries directly from VS Code.
44

55
## Features
66

7-
TODO
7+
- Querying on MySQL/MariaDB databases
8+
- Querying on Postgres databases
89

910
## Requirements
1011

1112
TODO
1213

13-
## Extension Settings
14+
## Installation
15+
16+
Grab a release from the [releases](https://github.com/kwalter94/sqlrunner/releases)
17+
page and install it as follows:
1418

15-
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
1619

17-
For example:
20+
```bash
1821

19-
This extension contributes the following settings:
22+
code --install-extension sqlrunner-x.x.x.vsix
2023

21-
* `myExtension.enable`: enable/disable this extension
22-
* `myExtension.thing`: set to `blah` to do something
24+
```
2325

2426
## Known Issues
2527

26-
TODO
28+
- URLs with formats different from `dbms://username:password@host:port/database` are not supported.
2729

2830
## Release Notes
2931

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"name": "sqlrunner",
33
"displayName": "SqlRunner",
44
"description": "Run some SQL in MySQL client.",
5+
"publisher": "kwalter94",
6+
"repository": "https://github.com/kwalter94/sqlrunner",
57
"version": "0.0.1",
68
"engines": {
79
"vscode": "^1.50.0"

0 commit comments

Comments
 (0)