diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 75a570f..f9de892 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -145,5 +145,5 @@ jobs: with: draft: true files: "smrec*" - body_path: Changes.md + body_path: CHANGELOG.md if: matrix.toolchain == 'stable' && startsWith( github.ref, 'refs/tags/v' ) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ece99c5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + +The format of this changelog is based on +[Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +smrec project adheres to +[Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + + +## [0.2.1] - 2020.11.20 + +- Initial release diff --git a/Cargo.toml b/Cargo.toml index 02afd1b..e72720f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smrec" -version = "0.2.0" +version = "0.2.1" authors = ["alisomay "] edition = "2021" license = "MIT" @@ -17,7 +17,6 @@ exclude = [ "assets/logo_*" ] - # When https://github.com/RustAudio/cpal/issues/794 is resolved this can continue to track the stable release. [target.'cfg(target_os = "windows")'.dependencies] cpal = { git = "https://github.com/RustAudio/cpal.git", features = ["asio"] }