Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## Unreleased

## [0.15.1] - 2018-01-09
## [0.16.0] - 2019-01-25

### Added

- ([GH-375](https://github.com/lingua-pupuli/puppet-vscode/issues/375)) Support starting Language Server in Docker container
- ([GH-295](https://github.com/lingua-pupuli/puppet-vscode/issues/295)) Add Puppetfile as a contributing langauge

### Changed

- ([GH-459](https://github.com/lingua-pupuli/puppet-vscode/issues/459)) Update extension for new Debugging API

### Fixed

- ([GH-453](https://github.com/lingua-pupuli/puppet-vscode/issues/453)) Language Server will not start

## [0.15.1] - 2019-01-09

### Fixed

Expand Down Expand Up @@ -290,3 +305,5 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
### Added

- Initial release of the puppet extension.

[0.16.0]: https://github.com/lingua-pupuli/puppet-vscode/compare/0.15.1..0.16.0
2 changes: 1 addition & 1 deletion package-lock.json

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

15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "puppet-vscode",
"displayName": "Puppet",
"description": "Official Puppet VSCode extension. Provides full Puppet DSL intellisense, syntax highlighting, Puppet command support, Puppet node graphs, and much more",
"version": "0.15.1",
"version": "0.16.0",
"publisher": "jpogran",
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/Puppet-Logo-Amber-sm.png",
Expand All @@ -20,6 +20,19 @@
"type": "git",
"url": "https://github.com/lingua-pupuli/puppet-vscode/issues"
},
"qna": "https://stackoverflow.com/questions/tagged/visual-studio-code+puppet",
"badges": [
{
"url": "https://travis-ci.org/lingua-pupuli/puppet-vscode.svg?branch=master",
"href": "https://travis-ci.org/lingua-pupuli/puppet-vscode",
"description": "Continuous integration (Travis)"
},
{
"url": "https://ci.appveyor.com/api/projects/status/8ke8fhdt9a7j688m/branch/master?svg=true",
"href": "https://ci.appveyor.com/project/lingua-pupuli/puppet-vscode/branch/master",
"description": "Continuous integration (Appveyor)"
}
],
"engines": {
"vscode": "^1.30.0"
},
Expand Down