File tree 11 files changed +18
-16
lines changed
11 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- export version=" 1.2.1 "
3
+ export version=" 1.2.2 "
Original file line number Diff line number Diff line change @@ -35,13 +35,15 @@ jsonHeaders =
35
35
]
36
36
37
37
38
- normalJson :: String -> String -> D. Decoder () a -> IO (Either Error a )
38
+ normalJson :: ( Show a ) => String -> String -> D. Decoder () a -> IO (Either Error a )
39
39
normalJson debugIdentifier url decoder = do
40
40
manager <- Http. getManager
41
41
debug $ " HTTP GET " <> url <> " (" <> debugIdentifier <> " )"
42
42
Http. get manager url jsonHeaders HttpError $ \ body ->
43
43
case D. fromByteString decoder body of
44
44
Right content ->
45
+ -- Helpful for debugging
46
+ -- return $ Right $ debugNote "response" content
45
47
return $ Right content
46
48
47
49
Left problem ->
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import qualified Elm.Version as V
9
9
10
10
11
11
raw :: (Int , Int , Int )
12
- raw = (1 ,2 ,1 )
12
+ raw = (1 ,2 ,2 )
13
13
14
14
15
15
rawToString :: (Int , Int , Int ) -> String
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lamdera" ,
3
- "version" : " 0.19.1-1.2.1-1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " npm install wrapper for Lamdera" ,
5
5
"license" : " BSD-3-Clause" ,
6
6
"repository" : " lamdera/compiler" ,
28
28
"lamdera" : " bin/lamdera"
29
29
},
30
30
"optionalDependencies" : {
31
- "@lamdera/compiler-darwin-arm64" : " 0.19.1-1.2.1 " ,
32
- "@lamdera/compiler-darwin-x64" : " 0.19.1-1.2.1 " ,
33
- "@lamdera/compiler-linux-arm64" : " 0.19.1-1.2.1 " ,
34
- "@lamdera/compiler-linux-x64" : " 0.19.1-1.2.1 " ,
35
- "@lamdera/compiler-win32-x64" : " 0.19.1-1.2.1 "
31
+ "@lamdera/compiler-darwin-arm64" : " 0.19.1-1.2.2 " ,
32
+ "@lamdera/compiler-darwin-x64" : " 0.19.1-1.2.2 " ,
33
+ "@lamdera/compiler-linux-arm64" : " 0.19.1-1.2.2 " ,
34
+ "@lamdera/compiler-linux-x64" : " 0.19.1-1.2.2 " ,
35
+ "@lamdera/compiler-win32-x64" : " 0.19.1-1.2.2 "
36
36
}
37
37
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-darwin-arm64" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The macOS ARM 64-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-darwin-x64" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The macOS 64-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-linux-arm" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The Linux ARM 32-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-linux-arm64" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The Linux ARM 64-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-linux-x64" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The Linux 64-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lamdera/compiler-win32-x64" ,
3
- "version" : " 0.19.1-1.2.1 " ,
3
+ "version" : " 0.19.1-1.2.2 " ,
4
4
"description" : " The Windows 64-bit binary for Lamdera." ,
5
5
"repository" : " lamdera/compiler" ,
6
6
"license" : " BSD-3-Clause" ,
Original file line number Diff line number Diff line change 3
3
4
4
# The publish will fail if the package name and version combination already exists in the specified registry.
5
5
6
- version=" 1.2.1 "
6
+ version=" 1.2.2 "
7
7
versionFull=" 0.19.1-$version "
8
8
return=$( pwd)
9
9
You can’t perform that action at this time.
0 commit comments