Skip to content

Commit 5f766f5

Browse files
committed
chore(dbml-ext): v.0.3.1
1 parent ba7f5a4 commit 5f766f5

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

packages/dbml-vs-code-extension/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to the "dbml-erd-visualizer" extension will be documented in
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.3.1]
8+
9+
### Fixed
10+
11+
- Improved multi-schema code handling
12+
713
## [0.3.0]
814

915
### Added

packages/dbml-vs-code-extension/package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dbml-erd-visualizer",
33
"displayName": "DBML Entity-Relationship Diagrams visualizer",
44
"description": "A VS Code extension for viewing the ERD (Entity Relationship Diagram) database schema from a dbml file in your VS Code Editor.",
5-
"version": "0.3.0",
5+
"version": "0.3.1",
66
"icon": "assets/logo.png",
77
"publisher": "bocovo",
88
"engines": {
@@ -14,6 +14,23 @@
1414
"activationEvents": [],
1515
"main": "./dist/extension/index.js",
1616
"contributes": {
17+
"languages": [
18+
{
19+
"id": "dbml",
20+
"aliases": [
21+
"DBML",
22+
"dbml",
23+
"Database Markup Language"
24+
],
25+
"extensions": [
26+
".dbml"
27+
],
28+
"icon": {
29+
"dark": "./icons/dbml-logo.svg",
30+
"light": "./icons/dbml-logo.svg"
31+
}
32+
}
33+
],
1734
"commands": [
1835
{
1936
"command": "dbml-erd-visualizer.previewDiagrams",

0 commit comments

Comments
 (0)