Skip to content

Commit 008976f

Browse files
committedMay 2, 2024·
Prep for v1.2.2
1 parent e0ef1fe commit 008976f

File tree

11 files changed

+18
-16
lines changed

11 files changed

+18
-16
lines changed
 

‎distribution/common.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
export version="1.2.1"
3+
export version="1.2.2"

‎extra/Lamdera/Http.hs

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ jsonHeaders =
3535
]
3636

3737

38-
normalJson :: String -> String -> D.Decoder () a -> IO (Either Error a)
38+
normalJson :: (Show a) => String -> String -> D.Decoder () a -> IO (Either Error a)
3939
normalJson debugIdentifier url decoder = do
4040
manager <- Http.getManager
4141
debug $ "HTTP GET " <> url <> " (" <> debugIdentifier <> ")"
4242
Http.get manager url jsonHeaders HttpError $ \body ->
4343
case D.fromByteString decoder body of
4444
Right content ->
45+
-- Helpful for debugging
46+
-- return $ Right $ debugNote "response" content
4547
return $ Right content
4648

4749
Left problem ->

‎extra/Lamdera/Version.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import qualified Elm.Version as V
99

1010

1111
raw :: (Int, Int, Int)
12-
raw = (1,2,1)
12+
raw = (1,2,2)
1313

1414

1515
rawToString :: (Int, Int, Int) -> String

‎extra/npm/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lamdera",
3-
"version": "0.19.1-1.2.1-1",
3+
"version": "0.19.1-1.2.2",
44
"description": "npm install wrapper for Lamdera",
55
"license": "BSD-3-Clause",
66
"repository": "lamdera/compiler",
@@ -28,10 +28,10 @@
2828
"lamdera": "bin/lamdera"
2929
},
3030
"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"
3636
}
3737
}

‎extra/npm/packages/lamdera-darwin-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-darwin-arm64",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The macOS ARM 64-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/packages/lamdera-darwin-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-darwin-x64",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The macOS 64-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/packages/lamdera-linux-arm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-linux-arm",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The Linux ARM 32-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/packages/lamdera-linux-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-linux-arm64",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The Linux ARM 64-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/packages/lamdera-linux-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-linux-x64",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The Linux 64-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/packages/lamdera-win32-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lamdera/compiler-win32-x64",
3-
"version": "0.19.1-1.2.1",
3+
"version": "0.19.1-1.2.2",
44
"description": "The Windows 64-bit binary for Lamdera.",
55
"repository": "lamdera/compiler",
66
"license": "BSD-3-Clause",

‎extra/npm/publish-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -ex
33

44
# The publish will fail if the package name and version combination already exists in the specified registry.
55

6-
version="1.2.1"
6+
version="1.2.2"
77
versionFull="0.19.1-$version"
88
return=$(pwd)
99

0 commit comments

Comments
 (0)
Please sign in to comment.