Skip to content

Commit

Permalink
changelog for version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juancastillo0 committed Mar 1, 2024
1 parent 37fda21 commit e78e8f4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
8 changes: 8 additions & 0 deletions packages/wasm_run/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.1.0

- flutter_rust_bridge: ">=1.82.4"
- Use Wasmi 0.31 and Wasmtime 14.0
- `WasmRunLibrary`, `setUpDesktopDynamicLibrary`, `uriForPackage` and `getUriBodyBytes` utilities
- [BREAKING] add `WasmInstanceBuilder.module` and `WasmInstanceBuilder.wasiOpenFile`
- loadAssets with `rootBundle.load` from 'flutter/services.dart'

## 0.0.1+2

- Restrict flutter_rust_bridge: ">=1.72.2 <1.80.0" due to breaking change
Expand Down
17 changes: 0 additions & 17 deletions packages/wasm_run/lib/load_module.dart
Original file line number Diff line number Diff line change
Expand Up @@ -241,20 +241,3 @@ class WasmFileUrisException implements Exception {
@override
String toString() => 'WasmFileUrisException($uris, ${errors.join('\n')})';
}

class WasmFileIOOutput {
final String environmentVariable;
final String? dartDefineConstant;
final String defaultPath;
final String? overridePath;
// final String packageName;
// final String pathFromPackageLib;

///
WasmFileIOOutput({
required this.environmentVariable,
required this.defaultPath,
this.dartDefineConstant,
this.overridePath,
});
}
2 changes: 1 addition & 1 deletion packages/wasm_run/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ flutter:
dependencies:
meta: ^1.8.0
ffi: ^2.0.1
flutter_rust_bridge: 1.82.4
flutter_rust_bridge: ^1.82.4
freezed_annotation: ^2.2.0
wasm_interop: ^2.0.1
logging: ^1.1.0
Expand Down
9 changes: 9 additions & 0 deletions packages/wasm_run_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.1.0

- flutter_rust_bridge: ">=1.82.4"
- Use Wasmi 0.31 and Wasmtime 14.0
- `WasmRunLibrary`, `setUpDesktopDynamicLibrary`, `uriForPackage` and `getUriBodyBytes` utilities
- (BREAKING) add `WasmInstanceBuilder.module` and `WasmInstanceBuilder.wasiOpenFile`
- loadAssets with `rootBundle.load` from 'flutter/services.dart'
- Clean build artifacts after installing

## 0.0.1+1

- Fix web asset loading for Flutter web
Expand Down

0 comments on commit e78e8f4

Please sign in to comment.