Skip to content

Commit 9d57bc9

Browse files
authored
Merge pull request #686 from jpogran/release-0.27.2
(maint) Release 0.27.2
2 parents 9df7c1a + 12ec5db commit 9d57bc9

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222
id: create_package
2323
shell: pwsh
2424
run: |
25-
npm i
26-
npx vsce package
25+
npm install -g vsce --silent;
26+
npm install -g typescript --silent;
27+
npm install --silent;
28+
vsce package
2729
2830
- name: Set vsix version
2931
id: vsce

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.27.2] - 2020-06-18
10+
11+
### Fixed
12+
13+
- ([GH-684](https://github.com/puppetlabs/puppet-vscode/issues/684)) Fix activation error when using PDK New Command in an empty workspace
14+
915
## [0.27.1] - 2020-06-11
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.27.1",
5+
"version": "0.27.2",
66
"editorComponents": {
77
"editorServices": {
88
"release": "0.26.1"

0 commit comments

Comments
 (0)