Skip to content

Commit

Permalink
version bump: v4.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislas-m committed Nov 1, 2018
1 parent d1727d5 commit 9d5dff8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion soda/cmd/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd

// Version defines the current Pop version.
const Version = "v4.8.7"
const Version = "v4.8.8"
14 changes: 9 additions & 5 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ then
verbose="-v"
fi

function cleanup {
echo "Cleanup resources..."
docker-compose down
rm tsoda
find ./sql_scripts/sqlite -name *.sqlite* -delete
}
# defer cleanup, so it will be executed even after premature exit
trap cleanup EXIT

docker-compose up -d
sleep 4 # Ensure mysql is online

Expand All @@ -32,8 +41,3 @@ test "postgres"
test "cockroach"
test "mysql"
test "sqlite"

docker-compose down

rm tsoda
find ./sql_scripts/sqlite -name *.sqlite* -delete

0 comments on commit 9d5dff8

Please sign in to comment.