@@ -7,22 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 2.0.3] - 2022-10-18
11
+
10
12
### Changed
11
13
12
- * fix: correctly handle multiline values in Set-ActionOutput and Set-ActionVariable.
14
+ - fix: correctly handle multiline values in ` Set-ActionOutput ` and ` Set-ActionVariable ` . ([ #18 ] )
15
+
16
+ [ #18 ] : https://github.com/Amadevus/pwsh-script/pull/18
13
17
14
18
## [ 2.0.2] - 2022-10-17
15
19
16
20
### Changed
17
- * rename default branch to ` main `
18
- * use [ Environment Files] for ` Set-ActionOutput ` command
21
+
22
+ - rename default branch to ` main ` .
23
+ - use [ Environment Files] for ` Set-ActionOutput ` command. ([ #14 ] )
24
+
25
+ [ #14 ] : https://github.com/Amadevus/pwsh-script/pull/14
19
26
20
27
## [ 2.0.1] - 2021-02-05
21
28
22
29
### Added
30
+
23
31
- ` Send-ActionFileCommand ` cmdlet that handles sending commands to [ Environment Files] instead of console output ([ #8 ] ).
24
32
25
33
### Changed
34
+
26
35
- ` Add-ActionPath ` and ` Set-ActionVariable ` are updated for [ Environment Files] Actions Runner change ([ #8 ] ).
27
36
28
37
[ Environment Files ] : https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#environment-files
@@ -31,11 +40,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
40
## [ 2.0.0] - 2020-09-10
32
41
33
42
### Changed
43
+
34
44
- Refactored into a 'composite' action which has following implications ([ #4 ] ):
35
45
- Action runs slightly faster because there's no 'node' process in between (or io stream redirects).
36
46
- Action has now just single ` script ` input, and you cannot "add" outputs other than automatic "result" and "error".
37
47
38
48
### Removed
49
+
39
50
- All optional inputs - until "composite" refactor, they were used to pass workflow contexts to the action.
40
51
It's no longer necessary, since 'composite' action can "grab" them on it's own.
41
52
- Ability to set custom ` outputs ` from the script - now only ` result ` and ` error ` are set (as outlined in readme).
@@ -45,10 +56,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
45
56
## [ 1.0.0] - 2020-06-10
46
57
47
58
### Added
59
+
48
60
- Initial action code
49
61
- ` GitHubActionsCore ` PowerShell module
50
62
51
- [ Unreleased ] : https://github.com/Amadevus/pwsh-script/compare/v2.0.2...HEAD
63
+ [ Unreleased ] : https://github.com/Amadevus/pwsh-script/compare/v2.0.3...HEAD
64
+ [ 2.0.3 ] : https://github.com/Amadevus/pwsh-script/compare/v2.0.2...v2.0.3
52
65
[ 2.0.2 ] : https://github.com/Amadevus/pwsh-script/compare/v2.0.1...v2.0.2
53
66
[ 2.0.1 ] : https://github.com/Amadevus/pwsh-script/compare/v2.0.0...v2.0.1
54
67
[ 2.0.0 ] : https://github.com/Amadevus/pwsh-script/compare/v1.0.0...v2.0.0
0 commit comments