Skip to content

Commit

Permalink
Prepare release of 0.5.0 (#59)
Browse files Browse the repository at this point in the history
* Bump package version to 0.5.0

* Add note about typescript extension errors propagating to our extension

* Add newline back to end of package.json

* Bump minimum version of @A...ics/typescript-plugin

The @autometrics/typescript-plugin.

This is done just be make sure that people use the (current) latest
release of the typescript plugin.

* Remove provider wasm file

* Update changelog

---------

Co-authored-by: Brett Beutell <[email protected]>
Co-authored-by: Jacco Flenter <[email protected]>
  • Loading branch information
3 people authored Aug 14, 2023
1 parent 1925cb7 commit 0181bed
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.5.0]
- Remove dependency on provider runtime and query prometheus directly
- Add support for relative time ranges
- Add refresh button
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"displayName": "Autometrics",
"license": "MIT",
"description": "Show enhanced autometrics information from your code",
"version": "0.4.0",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "https://github.com/autometrics-dev/vscode-autometrics"
Expand Down Expand Up @@ -157,7 +157,7 @@
"vitest": "^0.32.0"
},
"dependencies": {
"@autometrics/typescript-plugin": "^0.5.3",
"@autometrics/typescript-plugin": "^0.5.4",
"@floating-ui/core": "^1.2.6",
"@floating-ui/react": "^0.24.2",
"fiberplane-charts": "git+https://[email protected]/fiberplane/fiberplane.git#workspace=fiberplane-charts",
Expand Down
3 changes: 3 additions & 0 deletions src/languages/typescript/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ export const TypescriptHover = {
}
return undefined;
} catch (err) {
// NOTE - This could happen because of an error in other TS plugins
// I.e., we could end up propagating errors from other plugins
// (This happened to me with the tailwind intellisense plugin)
vscode.window.showErrorMessage(
"Autometrics: Error getting TypeScript hover info",
);
Expand Down
Binary file removed wasm/prometheus.wasm
Binary file not shown.
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ __metadata:
version: 6
cacheKey: 8

"@autometrics/typescript-plugin@npm:^0.5.3":
version: 0.5.3
resolution: "@autometrics/typescript-plugin@npm:0.5.3"
checksum: e0911453a383f60b3dfa98c5845ba5ba292aca7a2eb98cc3731b93b99b1982bb7dc56802498c9d7c35b4bce00ccbbd8ce772a5f54525e257e0caac0cd7c886c4
"@autometrics/typescript-plugin@npm:^0.5.4":
version: 0.5.4
resolution: "@autometrics/typescript-plugin@npm:0.5.4"
checksum: df18888dcb824ac9ac0e0b00532a4026e49deb118b5ad0a44d9f063a71ac4b9c2fdcc82a831d981ca7d805a23c071616d0f20403ead801dadb8c9dfa74af108b
languageName: node
linkType: hard

Expand Down Expand Up @@ -1176,7 +1176,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "autometrics@workspace:."
dependencies:
"@autometrics/typescript-plugin": ^0.5.3
"@autometrics/typescript-plugin": ^0.5.4
"@floating-ui/core": ^1.2.6
"@floating-ui/react": ^0.24.2
"@types/glob": ^8.1.0
Expand Down

0 comments on commit 0181bed

Please sign in to comment.