Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
mikmart committed Mar 4, 2024
1 parent 9d50b52 commit 6241736
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to the "sas" extension will be documented in this file.

## [0.2.0] - 2024-03-04

- Macro definitions in autocall libraries are now _cached_ for notably better
performance with large libraries and/or slow filesystems.

## [0.1.1] - 2022-11-25

- Refined README to better describe the extension. No functional changes.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/mikmart/vscode-sas"
},
"publisher": "mikmart",
"version": "0.1.1",
"version": "0.2.0",
"license": "MIT",
"engines": {
"vscode": "^1.47.0"
Expand Down
1 change: 0 additions & 1 deletion src/macro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export class AutocallLibrary {
const tasks = files.map(async (file) => {
const document = await vscode.workspace.openTextDocument(file);
const macros = discoverMacroDefinitions(document);

for (const macro of macros) {
if (!this._index.has(macro.name)) {
this._index.set(macro.name, [macro]);
Expand Down

0 comments on commit 6241736

Please sign in to comment.