Skip to content

Commit

Permalink
New FSH Publisher + v1.18.0 (#90)
Browse files Browse the repository at this point in the history
* Switch publisher name

* Bump version to v1.17.0

* Update vscode engine version

* Bump version to v1.18.0
  • Loading branch information
jafeltra authored Sep 19, 2024
1 parent 0ef10ec commit b0a4b39
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"name": "vscode-language-fsh",
"displayName": "FHIR Shorthand",
"description": "FHIR Shorthand (FSH) Language Support by HL7",
"version": "1.16.1",
"version": "1.18.0",
"author": "Health Level Seven International",
"license": "Apache-2.0",
"publisher": "MITRE-Health",
"publisher": "FHIR-Shorthand",
"icon": "images/docs/fsh-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/standardhealth/vscode-language-fsh"
},
"engines": {
"vscode": "^1.39.0"
"vscode": "^1.92.0"
},
"activationEvents": [
"onLanguage:fsh",
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/FshCompletionProvider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ suite('FshCompletionProvider', () => {
let definitionInstance: FshDefinitionProvider;

before(() => {
extension = vscode.extensions.getExtension('mitre-health.vscode-language-fsh');
extension = vscode.extensions.getExtension('fhir-shorthand.vscode-language-fsh');
instance = extension?.exports.completionProviderInstance as FshCompletionProvider;
definitionInstance = extension?.exports.definitionProviderInstance as FshDefinitionProvider;
});
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/FshDefinitionProvider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ suite('FshDefinitionProvider', () => {
let instance: FshDefinitionProvider;

before(() => {
extension = vscode.extensions.getExtension('mitre-health.vscode-language-fsh');
extension = vscode.extensions.getExtension('fhir-shorthand.vscode-language-fsh');
instance = extension?.exports.definitionProviderInstance as FshDefinitionProvider;
});

Expand Down

0 comments on commit b0a4b39

Please sign in to comment.