Skip to content

Commit a66ad2c

Browse files
committed
(maint) Release 0.25.2
This commit releases 0.25.2 with a fix for the new publisher in the telemetry class and updates the CHANGELOG with the 0.25.2 releases.
1 parent bd3d286 commit a66ad2c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9+
## [0.25.2] - 2020-03-27
10+
11+
### Fixed
12+
13+
- Updated telemetry class with new publisher
14+
915
## [0.25.1] - 2020-03-27
1016

1117
### Fixed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "puppet-vscode",
33
"displayName": "Puppet",
44
"description": "Official Puppet VSCode extension. Provides full Puppet DSL intellisense, syntax highlighting, Puppet command support, Puppet node graphs, and much more",
5-
"version": "0.25.1",
5+
"version": "0.25.2",
66
"editorComponents": {
77
"editorServices": {
88
"release": "0.25.0"

src/telemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function getTelemetryReporter() {
1515
}
1616

1717
function getPackageInfo(): IPackageInfo {
18-
let pkg = vscode.extensions.getExtension('jpogran.puppet-vscode');
18+
let pkg = vscode.extensions.getExtension('puppet.puppet-vscode');
1919
return {
2020
name: pkg.packageJSON.name,
2121
version: pkg.packageJSON.version,

0 commit comments

Comments
 (0)