diff --git a/CHANGELOG.md b/CHANGELOG.md index 39480ba..089f554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # aspeak Changelog + +# v4.0.0-alpha.4 + +- Now you can create a profile! + - You no longer need to use the locale arg every time if you do not want to use English locale. Just specify your locale in your profile. + - You can also provide default values for other options. +- Many internal refactors. + # v4.0.0-alpha.4 - Get rid of openssl completely. diff --git a/Cargo.lock b/Cargo.lock index d47491b..303699e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "aspeak" -version = "4.0.0-alpha.4" +version = "4.0.0-beta.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 1856a78..720c33e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aspeak" -version = "4.0.0-alpha.4" +version = "4.0.0-beta.1" edition = "2021" authors = ["kxxt "] description = "A simple text-to-speech client based on Azure's speech synthesis API"