diff --git a/CHANGELOG.md b/CHANGELOG.md index f4d75035..6965088e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.17.0](https://github.com/ffplayout/ffplayout/compare/v0.16.7...v0.17.0) (2023-03-05) +## [0.17.0](https://github.com/ffplayout/ffplayout/compare/v0.16.7...v0.17.0) (2023-03-28) ### ffpapi @@ -13,6 +13,7 @@ - fix v_in in custom filter [537f664](https://github.com/ffplayout/ffplayout/commit/537f664c067a122e31c06c196d354dc4bfd7fed3) - add audio only mode [537f664](https://github.com/ffplayout/ffplayout/commit/537f664c067a122e31c06c196d354dc4bfd7fed3) - get correct error level from config [c0740fc](https://github.com/ffplayout/ffplayout/commit/c0740fc8303f08cb57fe956de805290a705e5a28) +- fix logo path on windows system #291 [3328aaa](https://github.com/ffplayout/ffplayout/commit/3328aaac6a6b814ce491ff3c07e580136ea453dd) ### frontend diff --git a/Cargo.lock b/Cargo.lock index 78e3d179..ba718db3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1014,7 +1014,7 @@ dependencies = [ [[package]] name = "ffplayout" -version = "0.17.0-beta7" +version = "0.17.0" dependencies = [ "chrono", "clap", @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "ffplayout-api" -version = "0.17.0-beta7" +version = "0.17.0" dependencies = [ "actix-files", "actix-multipart", @@ -1067,7 +1067,7 @@ dependencies = [ [[package]] name = "ffplayout-lib" -version = "0.17.0-beta7" +version = "0.17.0" dependencies = [ "chrono", "crossbeam-channel", @@ -2960,7 +2960,7 @@ dependencies = [ [[package]] name = "tests" -version = "0.17.0-beta7" +version = "0.17.0" dependencies = [ "chrono", "crossbeam-channel", diff --git a/Cargo.toml b/Cargo.toml index 573acf6d..f7c57f42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["ffplayout-api", "ffplayout-engine", "lib", "tests"] default-members = ["ffplayout-api", "ffplayout-engine", "tests"] [workspace.package] -version = "0.17.0-beta7" +version = "0.17.0" license = "GPL-3.0" repository = "https://github.com/ffplayout/ffplayout" authors = ["Jonathan Baecker "]