Skip to content

Commit b0f7322

Browse files
authored
v0.9.0 release (#136)
1 parent ed2bf53 commit b0f7322

5 files changed

Lines changed: 28 additions & 4 deletions

File tree

AGENTS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,11 @@ You should rebuild the docs when you make edits.
7777

7878
Code for the VS Code extension is at `code/`.
7979
If 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.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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` <> ! ``

CLAUDE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,11 @@ You should rebuild the docs when you make edits.
7777

7878
Code for the VS Code extension is at `code/`.
7979
If 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.

doc/getting-started.inc.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

mshell/Main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const (
3535
CLIHTML
3636
)
3737

38-
const mshellVersion = "0.8.0"
38+
const mshellVersion = "0.9.0"
3939

4040
var tempFiles []string
4141

0 commit comments

Comments
 (0)