diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..28fead8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# CHANGELOG + +## [Unreleased] + +### Added + +- We are introducing the `env!()` directive to be able to call the shell from within our scripts. Inherently the language does not have a way to interact with the filesystem or network, so this is a way to get around that limitation. + +### Changed + +- The translation is lost for types like bool which when say using Swahili, they are parsed as `kweli` and `uongo` but evaluate to `true` and `false` respectively. This is a breaking change. +- The swahili translation changes from `bool` to `bulin`. \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 5b627b1..12dedc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -532,7 +532,7 @@ dependencies = [ [[package]] name = "speak" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap 4.0.32", "core", diff --git a/Cargo.toml b/Cargo.toml index 729b4ed..bcdbed4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "speak" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = """Speak is an experimental programming language that aims to have configurable keywords. \ This is to allow for the use of any written human language as preferred by the programmer."""