Skip to content

Commit 44189d1

Browse files
committed
Bump to v0.11.0
1 parent 987d4ed commit 44189d1

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ copy.msh
1717
mshell/bin
1818
mshell/test.msh
1919
mshell/msh
20+
mshell/mshell.exe
2021
codex.log
2122
.gocache/
2223
.gomodcache/

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.11.0 - 2026-02-18
99

1010
### Added
1111

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

4141
var tempFiles []string

0 commit comments

Comments
 (0)