Skip to content

Commit 3c84d21

Browse files
committed
v0.6.0 updates
1 parent 08a7385 commit 3c84d21

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## 0.6.0 - 2025-07-17
9+
10+
### Added
11+
12+
- Basic CLI history
13+
- Command completion in CLI
14+
- `countSubStr`, `uniq`, `canParseDt`, `fromUnixTime`, `toUnixTime`
15+
- Built-in Maybe type, `?` operator for unwrapping
16+
17+
### Fixed
18+
19+
- Dict literal parsing
20+
21+
### Changed
22+
23+
- Sorted output for `keys` and `values`
24+
- `map` now a built in function
25+
826
## 0.5.0 - 2025-06-24
927

1028
### Added

mshell/Main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func main() {
148148
os.Exit(0)
149149
return
150150
} else if arg == "--version" {
151-
fmt.Fprintf(os.Stdout, "0.5.0\n")
151+
fmt.Fprintf(os.Stdout, "0.6.0\n")
152152
os.Exit(0)
153153
} else if arg == "-c" {
154154
if i >= len(os.Args) {

0 commit comments

Comments
 (0)