diff --git a/.gitignore b/.gitignore index a7fd252..2e4c025 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ # Avoid committing pubspec.lock for library packages; see # https://dart.dev/guides/libraries/private-files#pubspeclock. -./pubspec.lock +pubspec.lock # other build files **/build/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd8e68..b8a044b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [2.0.7] +* Remove pubspec.lock + ## [2.0.6] * Pulling universal_ffi into a separate repo. Fixing License diff --git a/example/pubspec.lock b/example/pubspec.lock index 10c39ae..8747abe 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -516,7 +516,7 @@ packages: path: ".." relative: true source: path - version: "2.0.5" + version: "2.0.7" watcher: dependency: transitive description: diff --git a/example_flutter/pubspec.lock b/example_flutter/pubspec.lock index e6a8630..4b11483 100644 --- a/example_flutter/pubspec.lock +++ b/example_flutter/pubspec.lock @@ -246,7 +246,7 @@ packages: path: ".." relative: true source: path - version: "2.0.5" + version: "2.0.7" web: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index cd6a7c6..3c9ec9c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: wasm_ffi description: A wrapper for wasm which can be used as a drop-in replacement for dart:ffi for Web platform. -version: 2.0.6 +version: 2.0.7 repository: https://github.com/vm75/wasm_ffi environment: diff --git a/tools/update-version.sh b/tools/update-version.sh index 255fe30..97d44e1 100644 --- a/tools/update-version.sh +++ b/tools/update-version.sh @@ -43,7 +43,9 @@ publish() { if [[ ${publish} == "y" ]]; then git add * - dart pub get + flutter pub get + cd example && flutter pub get && cd .. + cd example_flutter && flutter pub get && cd .. flutter analyze && flutter pub publish fi }