Skip to content

Commit cd925da

Browse files
authored
Version bump for release (#160)
1 parent 8c7f99d commit cd925da

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.12.0 - 2026-02-19
11+
1012
### Changed
1113

1214
- File manager `l` on a file now opens it: text files open in `$EDITOR`, binary/unreadable files open with the platform default (`Start-Process` on Windows, `xdg-open` on Linux, `open` on macOS)

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@v0.11.0
84+
- <span class="yaml-key">uses:</span> mitchpaulus/mshell@v0.12.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@v0.11.0
94+
- <span class="yaml-key">uses:</span> mitchpaulus/mshell@v0.12.0
9595
<span class="yaml-key">with:</span>
96-
<span class="yaml-key">version:</span> v0.11.0
96+
<span class="yaml-key">version:</span> v0.12.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.11.0"
38+
const mshellVersion = "0.12.0"
3939
const tabCompletionColumnLimit = 10
4040

4141
var tempFiles []string

0 commit comments

Comments
 (0)