Skip to content

Commit 9685e6c

Browse files
committed
Bumped version
1 parent 1ada4af commit 9685e6c

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.5.2] - 2023-04-21
9+
10+
### Fixed
11+
- Corrected `types.Number` type alias name
12+
813
## [0.5.1] - 2023-04-08
914

1015
### Added
@@ -389,4 +394,5 @@ Initial release 🚀
389394
[0.3.1]: https://github.com/samarium-lang/Samarium/compare/0.3.0...0.3.1
390395
[0.4.0]: https://github.com/samarium-lang/Samarium/compare/0.3.1...0.4.0
391396
[0.5.0]: https://github.com/samarium-lang/Samarium/compare/0.4.0...0.5.0
392-
[0.5.1]: https://github.com/samarium-lang/Samarium/compare/0.5.0...0.5.1
397+
[0.5.1]: https://github.com/samarium-lang/Samarium/compare/0.5.0...0.5.1
398+
[0.5.2]: https://github.com/samarium-lang/Samarium/compare/0.5.1...0.5.2

docs/tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ you'll launch the REPL, an interactive shell that will read
2020
and evaluate any Samarium code you enter.
2121
```txt
2222
$ samarium
23-
Samarium 0.5.1
23+
Samarium 0.5.2
2424
-->
2525
```
2626
Interacting with the REPL is a nice way to experiment with Samarium:

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.5.1"
3+
version = "0.5.2"
44
description = "The Samarium Programming Language"
55
authors = ["trag1c <[email protected]>"]
66
license = "MIT"

src/samarium/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from .exceptions import SamariumTypeError, SamariumValueError
88

9-
__version__ = "0.5.1"
9+
__version__ = "0.5.2"
1010

1111
T = TypeVar("T")
1212

0 commit comments

Comments
 (0)