File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -119,15 +119,15 @@ for:
119119 cd packages/flet
120120 echo "Running flet tests"
121121 flutter test || exit 1
122- dart pub publish --force
122+ dart pub publish --force || exit 1
123123 cd $APPVEYOR_BUILD_FOLDER
124124
125- sleep 10
125+ sleep 120
126126
127127 for dir in packages/flet_*; do
128128 cd "$dir"
129129 echo "Publishing $dir package"
130- dart pub publish --force
130+ dart pub publish --force || exit 1
131131 cd "$APPVEYOR_BUILD_FOLDER"
132132 done
133133
Original file line number Diff line number Diff line change 22
33# 0.23.1
44
5+ * FIX: Flet 0.23 crashes on Ubuntu 22.04 ([ #3495 ] ( https://github.com/flet-dev/flet/issues/3495 ) )
56* FIX: View.floating_action_button_location: conditionally use _ set_attr.
67* FIX: Import ` ParamSpec ` from ` typing ` for Python >3.10.
78* FIX: replace ` len(list(filter(...))) ` by ` any(...) ` .
Original file line number Diff line number Diff line change 11# 0.23.1
22
3+ * FIX: Flet 0.23 crashes on Ubuntu 22.04 ([ #3495 ] ( https://github.com/flet-dev/flet/issues/3495 ) )
34* FIX: View.floating_action_button_location: conditionally use _ set_attr.
45* FIX: Import ` ParamSpec ` from ` typing ` for Python >3.10.
56* FIX: replace ` len(list(filter(...))) ` by ` any(...) ` .
You can’t perform that action at this time.
0 commit comments