Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Added more loops, operators
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnabRollin committed Oct 19, 2023
1 parent 2bd3c1b commit 05b7a74
Show file tree
Hide file tree
Showing 6 changed files with 836 additions and 21 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2023-10-18

### Added

- `while` and `until` loops
- `==`, `>` and `<` compare operators
- `+=`, `-=`, `*=` and `/=` "operate and assign" operators
- Functions now say their name on error.

## [0.6.1] - 2023-10-14

### Fixed
Expand Down Expand Up @@ -77,7 +86,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Simple function and string parsing

[unreleased]: https://github.com/ArnabRollin/dwn/compare/v0.6.1...HEAD
[unreleased]: https://github.com/ArnabRollin/dwn/compare/v0.7.0...HEAD

[0.7.0]: https://github.com/ArnabRollin/dwn/compare/v0.6.1...v0.7.0

[0.6.1]: https://github.com/ArnabRollin/dwn/compare/v0.6.0...v0.6.1

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dwn"
version = "0.6.1"
version = "0.7.0"
edition = "2021"

[dependencies]
Expand Down
Loading

0 comments on commit 05b7a74

Please sign in to comment.