Skip to content

Commit 50db533

Browse files
authored
Merge pull request #360 from puppetlabs/maint-release_prep
(maint) - Release prep v2.0.0
2 parents 87e267d + d06aa9f commit 50db533

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.github/workflows/create-test-matrix.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ if ($Raw) {
5151
Write-Host ($Jobs | ConvertTo-JSON)
5252
} else {
5353
# Output the result for consumption by GH Actions
54-
Write-Host "{matrix}={$($Jobs | ConvertTo-JSON -Compress)}" >> $GITHUB_OUTPUT
54+
Write-Host "matrix=$($Jobs | ConvertTo-JSON -Compress)" >> $GITHUB_OUTPUT
5555
}

.github/workflows/release_prep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: "Check if a release is necessary"
5656
id: "check"
5757
run: |
58-
git diff --quiet CHANGELOG.md && echo "{release}={false}" >> $GITHUB_OUTPUT || echo "{release}={true}" >> $GITHUB_OUTPUT
58+
git diff --quiet CHANGELOG.md && echo "release=false" >> $GITHUB_OUTPUT || echo "release=true" >> $GITHUB_OUTPUT
5959
6060
- name: "Commit changes"
6161
if: ${{ steps.check.outputs.release == 'true' }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55

66
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).
77

8+
## [v2.0.0](https://github.com/puppetlabs/puppet-editor-services/tree/v2.0.0) - 2023-11-27
9+
10+
[Full Changelog](https://github.com/puppetlabs/puppet-editor-services/compare/v1.3.1...v2.0.0)
11+
12+
### Changed
13+
14+
- (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))
15+
16+
### Fixed
17+
18+
- (maint) - Write file type definitions to tempfile [#359](https://github.com/puppetlabs/puppet-editor-services/pull/359) ([jordanbreen28](https://github.com/jordanbreen28))
19+
- (CAT-1595) - Remove diagnostic on textDoucment onDidClose [#356](https://github.com/puppetlabs/puppet-editor-services/pull/356) ([jordanbreen28](https://github.com/jordanbreen28))
20+
- (CAT-1493) - Fix missing file resource type parameters [#353](https://github.com/puppetlabs/puppet-editor-services/pull/353) ([jordanbreen28](https://github.com/jordanbreen28))
21+
822
## [v1.3.1](https://github.com/puppetlabs/puppet-editor-services/tree/v1.3.1) - 2023-03-15
923

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

lib/puppet_editor_services/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module PuppetEditorServices
4-
PUPPETEDITORSERVICESVERSION = '1.3.1' unless defined? PUPPETEDITORSERVICESVERSION
4+
PUPPETEDITORSERVICESVERSION = '2.0.0' unless defined? PUPPETEDITORSERVICESVERSION
55

66
# @api public
77
#

0 commit comments

Comments
 (0)