Skip to content

Commit

Permalink
Remove pubspec.lock from package
Browse files Browse the repository at this point in the history
  • Loading branch information
vm75 committed Dec 15, 2024
1 parent 7ea655e commit 0876363
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [2.0.7]
* Remove pubspec.lock

## [2.0.6]
* Pulling universal_ffi into a separate repo. Fixing License

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.0.5"
version: "2.0.7"
watcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example_flutter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.0.5"
version: "2.0.7"
web:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 3 additions & 1 deletion tools/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 0876363

Please sign in to comment.