diff --git a/CHANGELOG.md b/CHANGELOG.md index 782a8e6..7171eb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,22 @@ # Changelog -## Unreleased +## v0.5.0 (2021-02-23) **Features** - Match statements (#15) - Modules and imports (#17) +- Support for Docker +- Support for Arch Linux build system (Thanks Alex) + +**Fixes** + +- Fixed a bug with nested expressions and arithmetic operations + +**Documentation** + +- Added some in-repo technical documentation +- Minor fixes ## v0.4.0 (2021-02-20) diff --git a/Cargo.lock b/Cargo.lock index 7ade2c1..b992863 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -365,7 +365,7 @@ dependencies = [ [[package]] name = "sabre-lang" -version = "0.4.0" +version = "0.5.0" dependencies = [ "inkwell", "rust-embed", diff --git a/Cargo.toml b/Cargo.toml index c6b4028..ac4cc2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sabre-lang" -version = "0.4.0" +version = "0.5.0" authors = ["Garrit Franke "] description = "The sabre programming language" license = "Apache-2.0"