Increase the version to 0.2.33

This commit is contained in:
Nicolas Abril 2024-06-05 19:18:31 +02:00
parent 94cada901d
commit 4bb520442a
3 changed files with 8 additions and 5 deletions

View File

@ -1,9 +1,12 @@
# Changelog
## 0.2.32
## 0.2.33
- Added `expand_main`, a compilation pass that expands references in the entry point function. (#424)
- Changed the `float_combinators` pass to not extract in the entry point function. (#424)
- Added the built-in `Tree` datatype.
- Added `![]` and `!` syntax for `Tree` literals.
## 0.2.32
- Added the built-in `Tree` datatype. (#528)
- Added `![]` and `!` syntax for `Tree` literals. (#528)
- Moved the builtins documentation to `/docs`.
- Created the changelog.

2
Cargo.lock generated
View File

@ -62,7 +62,7 @@ dependencies = [
[[package]]
name = "bend-lang"
version = "0.2.32"
version = "0.2.33"
dependencies = [
"TSPL",
"clap",

View File

@ -2,7 +2,7 @@
name = "bend-lang"
description = "A high-level, massively parallel programming language"
license = "Apache-2.0"
version = "0.2.32"
version = "0.2.33"
edition = "2021"
rust-version = "1.74"
exclude = ["tests/"]