diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bb68266..a1e0ae7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 7.1.0 + +- Fixed JavaScript bindings on the web, resolving errors related to the missing `rinf` JavaScript object in web workers. +- Cleaned up the usage of the global JavaScript namespace on the web. + ## 7.0.4 - Upgraded `allo-isolate` to fix crashes on Android. diff --git a/flutter_package/CHANGELOG.md b/flutter_package/CHANGELOG.md index 4bb68266..a1e0ae7a 100644 --- a/flutter_package/CHANGELOG.md +++ b/flutter_package/CHANGELOG.md @@ -1,3 +1,8 @@ +## 7.1.0 + +- Fixed JavaScript bindings on the web, resolving errors related to the missing `rinf` JavaScript object in web workers. +- Cleaned up the usage of the global JavaScript namespace on the web. + ## 7.0.4 - Upgraded `allo-isolate` to fix crashes on Android. diff --git a/flutter_package/example/native/hub/Cargo.toml b/flutter_package/example/native/hub/Cargo.toml index df1e29c5..c593efdf 100644 --- a/flutter_package/example/native/hub/Cargo.toml +++ b/flutter_package/example/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "7.0.4" +rinf = "7.1.0" prost = "0.13.0" tokio = { version = "1", features = ["rt", "sync", "time", "macros"] } tokio_with_wasm = { version = "0.7.2", features = [ diff --git a/flutter_package/pubspec.yaml b/flutter_package/pubspec.yaml index 2388295d..cc3a1cba 100644 --- a/flutter_package/pubspec.yaml +++ b/flutter_package/pubspec.yaml @@ -1,6 +1,6 @@ name: rinf description: Rust for native business logic, Flutter for flexible and beautiful GUI -version: 7.0.4 +version: 7.1.0 repository: https://github.com/cunarist/rinf environment: diff --git a/flutter_package/template/native/hub/Cargo.toml b/flutter_package/template/native/hub/Cargo.toml index c3f8d114..9757b1f7 100644 --- a/flutter_package/template/native/hub/Cargo.toml +++ b/flutter_package/template/native/hub/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" crate-type = ["lib", "cdylib", "staticlib"] [dependencies] -rinf = "7.0.4" +rinf = "7.1.0" prost = "0.13.0" tokio = { version = "1", features = ["rt", "macros"] } diff --git a/rust_crate/Cargo.toml b/rust_crate/Cargo.toml index b8a95e90..46a5e232 100644 --- a/rust_crate/Cargo.toml +++ b/rust_crate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rinf" -version = "7.0.4" +version = "7.1.0" edition = "2021" license = "MIT" description = "Rust for native business logic, Flutter for flexible and beautiful GUI"