diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e9cf49f..1493e6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.15.0 + +- Allowed setting custom timeout when using `requestToRust()`. Thanks `@cipherchabon`! + ## 4.14.0 - Added a web API fetching example to the template. diff --git a/flutter_ffi_plugin/CHANGELOG.md b/flutter_ffi_plugin/CHANGELOG.md index 4e9cf49f..1493e6ee 100644 --- a/flutter_ffi_plugin/CHANGELOG.md +++ b/flutter_ffi_plugin/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.15.0 + +- Allowed setting custom timeout when using `requestToRust()`. Thanks `@cipherchabon`! + ## 4.14.0 - Added a web API fetching example to the template. diff --git a/flutter_ffi_plugin/pubspec.yaml b/flutter_ffi_plugin/pubspec.yaml index f8405043..ff95cd39 100755 --- a/flutter_ffi_plugin/pubspec.yaml +++ b/flutter_ffi_plugin/pubspec.yaml @@ -1,6 +1,6 @@ name: rinf description: '"Rust as your Flutter backend, Flutter as your Rust frontend"' -version: 4.14.0 +version: 4.15.0 repository: https://github.com/cunarist/rinf environment: diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index fa1ed628..6d9a43cf 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "4.14.0" +version = "4.15.0" edition = "2021" license = "MIT" description = "Rust as your Flutter backend, Flutter as your Rust frontend"