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
2 changes: 1 addition & 1 deletion .github/workflows/create-test-matrix.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ if ($Raw) {
Write-Host ($Jobs | ConvertTo-JSON)
} else {
# Output the result for consumption by GH Actions
Write-Host "{matrix}={$($Jobs | ConvertTo-JSON -Compress)}" >> $GITHUB_OUTPUT
Write-Host "matrix=$($Jobs | ConvertTo-JSON -Compress)" >> $GITHUB_OUTPUT
}
2 changes: 1 addition & 1 deletion .github/workflows/release_prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: "Check if a release is necessary"
id: "check"
run: |
git diff --quiet CHANGELOG.md && echo "{release}={false}" >> $GITHUB_OUTPUT || echo "{release}={true}" >> $GITHUB_OUTPUT
git diff --quiet CHANGELOG.md && echo "release=false" >> $GITHUB_OUTPUT || echo "release=true" >> $GITHUB_OUTPUT

- name: "Commit changes"
if: ${{ steps.check.outputs.release == 'true' }}
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v2.0.0](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.0) - 2023-11-27

[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v1.3.1...v2.0.0)

### Changed

- (CAT-1430) - Drop ruby 2.5 Support & Add Ruby 3.x Support [#348](https://github.com/puppetlabs/puppet-editor-services/pull/348) ([jordanbreen28](https://github.com/jordanbreen28))

### Fixed

- (maint) - Write file type definitions to tempfile [#359](https://github.com/puppetlabs/puppet-editor-services/pull/359) ([jordanbreen28](https://github.com/jordanbreen28))
- (CAT-1595) - Remove diagnostic on textDoucment onDidClose [#356](https://github.com/puppetlabs/puppet-editor-services/pull/356) ([jordanbreen28](https://github.com/jordanbreen28))
- (CAT-1493) - Fix missing file resource type parameters [#353](https://github.com/puppetlabs/puppet-editor-services/pull/353) ([jordanbreen28](https://github.com/jordanbreen28))

## [v1.3.1](https://github.com/puppetlabs/puppet-editor-services/tree/v1.3.1) - 2023-03-15

[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/1.3.0...v1.3.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet_editor_services/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module PuppetEditorServices
PUPPETEDITORSERVICESVERSION = '1.3.1' unless defined? PUPPETEDITORSERVICESVERSION
PUPPETEDITORSERVICESVERSION = '2.0.0' unless defined? PUPPETEDITORSERVICESVERSION

# @api public
#
Expand Down