Skip to content

Commit 8308b64

Browse files
authored
Merge pull request #56 from samarium-lang/update-062-info
2 parents 665f721 + 1227b06 commit 8308b64

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.2] - 2024-06-19
9+
10+
### Changed
11+
- Session names now only allow a limited set of characters (`[a-zA-Z0-9_\-]`)
12+
13+
### Fixed
14+
- `:session load` will no longer crash on a non-existent session
15+
816
## [0.6.1] - 2024-06-18
917

1018
### Changed
@@ -439,3 +447,4 @@ Initial release 🚀
439447
[0.5.3]: https://github.com/samarium-lang/Samarium/compare/0.5.2...0.5.3
440448
[0.6.0]: https://github.com/samarium-lang/Samarium/compare/0.5.3...0.6.0
441449
[0.6.1]: https://github.com/samarium-lang/Samarium/compare/0.6.0...0.6.1
450+
[0.6.2]: https://github.com/samarium-lang/Samarium/compare/0.6.1...0.6.2

docs/tools.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,8 @@ Samarium 0.6.0
255255

256256
## `save [name]`
257257
Saves a sesssion under a given name. Becomes an unnamed session if no name is
258-
supplied.
258+
supplied. Session names can consist of English letters, digits, hyphens, and
259+
underscores.
259260
```
260261
--> pi * { * <-math.TAU--; }
261262
--> :session save pi

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "samarium"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "The Samarium Programming Language"
55
authors = ["trag1c <[email protected]>"]
66
license = "MIT"

samarium/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if TYPE_CHECKING:
99
from collections.abc import Callable
1010

11-
__version__ = "0.6.0"
11+
__version__ = "0.6.2"
1212

1313
T = TypeVar("T")
1414

0 commit comments

Comments
 (0)