Skip to content

Commit ad023fa

Browse files
committed
Prepare for v1.2.0
1 parent daa9997 commit ad023fa

File tree

22 files changed

+101
-17
lines changed

22 files changed

+101
-17
lines changed

.github/workflows/build-linux-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
branches:
4-
- distribute-test
4+
- distribute
55

66
name: Build Linux arm64
77
jobs:

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright 2012-present Evan Czaplicki
2+
Copyright 2020-present Mario Rogic
23

34
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
45

distribution/build-linux-arm32v7-musl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -ex # Be verbose and exit immediately on error instead of trying to continue
33

4-
version="1.1.1"
4+
version="1.2.0"
55
os="linux"
66
arch="arm32v7"
77

distribution/build-linux-arm64-musl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -ex # Be verbose and exit immediately on error instead of trying to continue
33

4-
version="1.1.1"
4+
version="1.2.0"
55
os="linux"
66
arch="arm64"
77

distribution/build-linux-x86_64-musl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -ex # Be verbose and exit immediately on error instead of trying to continue
33

4-
version="1.1.1"
4+
version="1.2.0"
55
os="linux"
66
arch="x86_64"
77

distribution/build-macos-arm64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -ex # Be verbose and exit immediately on error instead of trying to continue
33

4-
version="1.1.1"
4+
version="1.2.0"
55
os="macos"
66
arch="arm64"
77

distribution/build-macos-x86_64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -ex # Be verbose and exit immediately on error instead of trying to continue
33

4-
version="1.1.1"
4+
version="1.2.0"
55
os="macos"
66
arch="x86_64"
77

extra/Lamdera/Version.hs

Lines changed: 1 addition & 1 deletion
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,1,1)
12+
raw = (1,2,0)
1313

1414

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

extra/npm/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules/
22
packages/*/lamdera
3-
packages/*/lamdera.exe
3+
packages/*/lamdera.exe
4+
packages/*/*.dll

extra/npm/package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lamdera",
3-
"version": "0.19.1-1.1.1-2",
3+
"version": "0.19.1-1.2.0-1",
44
"description": "npm install wrapper for Lamdera",
55
"license": "BSD-3-Clause",
66
"repository": "lamdera/compiler",
@@ -28,11 +28,10 @@
2828
"lamdera": "bin/lamdera"
2929
},
3030
"optionalDependencies": {
31-
"@lamdera/compiler-darwin-arm64": "0.19.1-1.1.1",
32-
"@lamdera/compiler-darwin-x64": "0.19.1-1.1.1",
33-
"@lamdera/compiler-linux-arm": "0.19.1-1.1.1",
34-
"@lamdera/compiler-linux-arm64": "0.19.1-1.1.1",
35-
"@lamdera/compiler-linux-x64": "0.19.1-1.1.1",
36-
"@lamdera/compiler-win32-x64": "0.19.1-1.1.1"
31+
"@lamdera/compiler-darwin-arm64": "0.19.1-1.2.0",
32+
"@lamdera/compiler-darwin-x64": "0.19.1-1.2.0",
33+
"@lamdera/compiler-linux-arm64": "0.19.1-1.2.0",
34+
"@lamdera/compiler-linux-x64": "0.19.1-1.2.0",
35+
"@lamdera/compiler-win32-x64": "0.19.1-1.2.0"
3736
}
3837
}

0 commit comments

Comments
 (0)