Skip to content

Commit 97a8b21

Browse files
committed
docs: update changelog for 2.0.3 release
1 parent a96b132 commit 97a8b21

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

CHANGELOG.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.3] - 2022-10-18
11+
1012
### Changed
1113

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
1317

1418
## [2.0.2] - 2022-10-17
1519

1620
### 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
1926

2027
## [2.0.1] - 2021-02-05
2128

2229
### Added
30+
2331
- `Send-ActionFileCommand` cmdlet that handles sending commands to [Environment Files] instead of console output ([#8]).
2432

2533
### Changed
34+
2635
- `Add-ActionPath` and `Set-ActionVariable` are updated for [Environment Files] Actions Runner change ([#8]).
2736

2837
[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
3140
## [2.0.0] - 2020-09-10
3241

3342
### Changed
43+
3444
- Refactored into a 'composite' action which has following implications ([#4]):
3545
- Action runs slightly faster because there's no 'node' process in between (or io stream redirects).
3646
- Action has now just single `script` input, and you cannot "add" outputs other than automatic "result" and "error".
3747

3848
### Removed
49+
3950
- All optional inputs - until "composite" refactor, they were used to pass workflow contexts to the action.
4051
It's no longer necessary, since 'composite' action can "grab" them on it's own.
4152
- 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
4556
## [1.0.0] - 2020-06-10
4657

4758
### Added
59+
4860
- Initial action code
4961
- `GitHubActionsCore` PowerShell module
5062

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
5265
[2.0.2]: https://github.com/Amadevus/pwsh-script/compare/v2.0.1...v2.0.2
5366
[2.0.1]: https://github.com/Amadevus/pwsh-script/compare/v2.0.0...v2.0.1
5467
[2.0.0]: https://github.com/Amadevus/pwsh-script/compare/v1.0.0...v2.0.0

0 commit comments

Comments
 (0)