Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c committed Apr 21, 2023
1 parent d4bd7eb commit 073e00f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.3] - 2023-04-21

### Fixed
- Fixed entrypoint argc check template

## [0.5.2] - 2023-04-21

### Fixed
Expand Down Expand Up @@ -395,4 +400,5 @@ Initial release 🚀
[0.4.0]: https://github.com/samarium-lang/Samarium/compare/0.3.1...0.4.0
[0.5.0]: https://github.com/samarium-lang/Samarium/compare/0.4.0...0.5.0
[0.5.1]: https://github.com/samarium-lang/Samarium/compare/0.5.0...0.5.1
[0.5.2]: https://github.com/samarium-lang/Samarium/compare/0.5.1...0.5.2
[0.5.2]: https://github.com/samarium-lang/Samarium/compare/0.5.1...0.5.2
[0.5.3]: https://github.com/samarium-lang/Samarium/compare/0.5.2...0.5.3
2 changes: 1 addition & 1 deletion docs/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ you'll launch the REPL, an interactive shell that will read
and evaluate any Samarium code you enter.
```txt
$ samarium
Samarium 0.5.2
Samarium 0.5.3
-->
```
Interacting with the REPL is a nice way to experiment with Samarium:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "samarium"
version = "0.5.2"
version = "0.5.3"
description = "The Samarium Programming Language"
authors = ["trag1c <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/samarium/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .exceptions import SamariumTypeError, SamariumValueError

__version__ = "0.5.2"
__version__ = "0.5.3"

T = TypeVar("T")

Expand Down

0 comments on commit 073e00f

Please sign in to comment.