File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,3 +77,11 @@ You should rebuild the docs when you make edits.
7777
7878Code for the VS Code extension is at ` code/ ` .
7979If we update syntax, ensure to update appropriately.
80+
81+ ## Releases
82+
83+ 1 . Move items from unreleased to new version number in CHANGELOG.
84+ 2 . Update ` mshellVersion ` variable in ` Main.go ` .
85+ 3 . Update 'Getting Started' docs with latest version for GitHub action.
86+ Remember, the action.yaml is part of this repo, so the versions stay in sync.
87+ 4 . I will do the final git tag and GitHub release step.
Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Added
1111
12+ ### Fixed
13+
14+ ### Changed
15+
16+ ## 0.9.0 - 2026-01-27
17+
18+ ### Added
19+
1220- Prefix quote syntax (` functionName. ... end ` ) as an alternative to ` (...) functionName `
1321- ` <> ` operator for in-place file modification. Reads file to stdin, writes stdout back on success.
1422 Example: `` [sort -u] `file.txt` <> ! ``
Original file line number Diff line number Diff line change @@ -77,3 +77,11 @@ You should rebuild the docs when you make edits.
7777
7878Code for the VS Code extension is at ` code/ ` .
7979If we update syntax, ensure to update appropriately.
80+
81+ ## Releases
82+
83+ 1 . Move items from unreleased to new version number in CHANGELOG.
84+ 2 . Update ` mshellVersion ` variable in ` Main.go ` .
85+ 3 . Update 'Getting Started' docs with latest version for GitHub action.
86+ Remember, the action.yaml is part of this repo, so the versions stay in sync.
87+ 4 . I will do the final git tag and GitHub release step.
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ <h1 id="getting-started-github-actions">GitHub Actions <a class="section-link" h
8181
8282< pre >
8383< code > < span class ="yaml-key "> steps:</ span >
84- - < span class ="yaml-key "> uses:</ span > mitchpaulus/mshell@v1
84+ - < span class ="yaml-key "> uses:</ span > mitchpaulus/mshell@v0.9.0
8585 - < span class ="yaml-key "> run:</ span > msh script.msh</ code >
8686</ pre >
8787
@@ -91,9 +91,9 @@ <h1 id="getting-started-github-actions">GitHub Actions <a class="section-link" h
9191
9292< pre >
9393< code > < span class ="yaml-key "> steps:</ span >
94- - < span class ="yaml-key "> uses:</ span > mitchpaulus/mshell@main
94+ - < span class ="yaml-key "> uses:</ span > mitchpaulus/mshell@v0.9.0
9595 < span class ="yaml-key "> with:</ span >
96- < span class ="yaml-key "> version:</ span > v0.8 .0
96+ < span class ="yaml-key "> version:</ span > v0.9 .0
9797 - < span class ="yaml-key "> run:</ span > msh script.msh</ code >
9898</ pre >
9999
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const (
3535 CLIHTML
3636)
3737
38- const mshellVersion = "0.8 .0"
38+ const mshellVersion = "0.9 .0"
3939
4040var tempFiles []string
4141
You can’t perform that action at this time.
0 commit comments