fixed e2e tests, fixed release script.

This commit is contained in:
Martin Sosic 2022-11-22 19:31:43 +01:00
parent 61b0d668b3
commit a8c2bd0e80
6 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,7 @@
app waspBuild { app waspBuild {
db: { system: PostgreSQL }, db: { system: PostgreSQL },
wasp: { wasp: {
version: "^0.6.0" version: "^0.7.0"
}, },
title: "waspBuild" title: "waspBuild"
} }

View File

@ -1,6 +1,6 @@
app waspCompile { app waspCompile {
wasp: { wasp: {
version: "^0.6.0" version: "^0.7.0"
}, },
title: "waspCompile" title: "waspCompile"
} }

View File

@ -1,7 +1,7 @@
app waspJob { app waspJob {
db: { system: PostgreSQL }, db: { system: PostgreSQL },
wasp: { wasp: {
version: "^0.6.0" version: "^0.7.0"
}, },
title: "waspJob" title: "waspJob"
} }

View File

@ -1,6 +1,6 @@
app waspMigrate { app waspMigrate {
wasp: { wasp: {
version: "^0.6.0" version: "^0.7.0"
}, },
title: "waspMigrate" title: "waspMigrate"
} }

View File

@ -1,6 +1,6 @@
app waspNew { app waspNew {
wasp: { wasp: {
version: "^0.6.0" version: "^0.7.0"
}, },
title: "waspNew" title: "waspNew"
} }

View File

@ -63,7 +63,8 @@ makeNewRelease newVersion = do
putStrLn $ putStrLn $
unlines unlines
[ "This will release wasp version " ++ versionFromCabalFile ++ ".", [ "",
"This will release wasp version " ++ versionFromCabalFile ++ ".",
"tag " ++ tag ++ " will be created and pushed, triggering CI to create new release on Github.", "tag " ++ tag ++ " will be created and pushed, triggering CI to create new release on Github.",
"Are you sure you want to proceed? [Y/N]:" "Are you sure you want to proceed? [Y/N]:"
] ]