diff --git a/.github/workflows/create-test-matrix.ps1 b/.github/workflows/create-test-matrix.ps1 index 45d7da65..ce2fc4a2 100644 --- a/.github/workflows/create-test-matrix.ps1 +++ b/.github/workflows/create-test-matrix.ps1 @@ -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 } diff --git a/.github/workflows/release_prep.yml b/.github/workflows/release_prep.yml index 923e7861..68c9a7c0 100644 --- a/.github/workflows/release_prep.yml +++ b/.github/workflows/release_prep.yml @@ -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' }} diff --git a/CHANGELOG.md b/CHANGELOG.md index aa285985..2ef7f2ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/lib/puppet_editor_services/version.rb b/lib/puppet_editor_services/version.rb index 7b01a887..eae235b2 100644 --- a/lib/puppet_editor_services/version.rb +++ b/lib/puppet_editor_services/version.rb @@ -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 #