Skip to content

Commit 6b44d2a

Browse files
committed
move to 0.19.1-beta-1
1 parent a79cddf commit 6b44d2a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

builder/src/Stuff.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ prepublishDir root =
6262

6363
compilerVersion :: FilePath
6464
compilerVersion =
65-
V.toChars V.compiler ++ "-alpha-4"
65+
V.toChars V.compiler ++ "-beta-1"
6666

6767

6868

terminal/src/Publish.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ register :: Http.Manager -> Pkg.Name -> V.Version -> Docs.Documentation -> Strin
382382
register manager pkg vsn docs commitHash sha =
383383
if True then
384384
Task.io $ putStrLn $
385-
"Publishing is disabled in the 0.19.1-alpha-4 release.\n\
385+
"Publishing is disabled in the 0.19.1-beta-1 release.\n\
386386
\Publish with 0.19.0 for now.\n"
387387
else
388388
let

terminal/src/Terminal/Args.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ simple details example args_ flags_ callback =
4141
argStrings <- Env.getArgs
4242
case argStrings of
4343
["--version"] ->
44-
do hPutStrLn stdout (V.toChars V.compiler ++ "-alpha-4")
44+
do hPutStrLn stdout (V.toChars V.compiler ++ "-beta-1")
4545
Exit.exitSuccess
4646

4747
chunks ->
@@ -69,7 +69,7 @@ complex intro outro interfaces =
6969
Error.exitWithOverview intro outro interfaces
7070

7171
["--version"] ->
72-
do hPutStrLn stdout (V.toChars V.compiler ++ "-alpha-4")
72+
do hPutStrLn stdout (V.toChars V.compiler ++ "-beta-1")
7373
Exit.exitSuccess
7474

7575
command : chunks ->

0 commit comments

Comments
 (0)