From 4bb520442a58f10d72ae292c3169f1ea1700637d Mon Sep 17 00:00:00 2001 From: Nicolas Abril Date: Wed, 5 Jun 2024 19:18:31 +0200 Subject: [PATCH] Increase the version to 0.2.33 --- CHANGELOG.md | 9 ++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79ff1886..9f03b4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.lock b/Cargo.lock index d10d2ccb..0c252c98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,7 +62,7 @@ dependencies = [ [[package]] name = "bend-lang" -version = "0.2.32" +version = "0.2.33" dependencies = [ "TSPL", "clap", diff --git a/Cargo.toml b/Cargo.toml index e82f7852..6ddc0931 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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/"]